cURL
curl --request POST \ --url http://base_url/v1/service/bbps/complaint/status \ --header 'Authorization: Basic <encoded-value>'
{ "code": "0x0201", "message": "Something went worng, Please try after sometimes.", "status": "FAILURE" }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Was this page helpful?