Authentication

Authentication

CDWS uses credential-based authentication and authorization. Credentials are set using custom HTTPS headers:

Key

Value

Key

Value

x-user

user name provided by IFI CLAIMS

x-password

password provided by IFI CLAIMS

Example:

# using command-line utility wget wget --header 'x-user: USER' --header 'x-password: PASSWORD' https://...   # using command-line utility curl curl -H 'x-user: USER' -H 'x-password: PASSWORD' https://...