Set a temporary allow

put

/customercare/v1/{customerId}/provision

Sets a temporary allow for the user.

Request

Path Parameters
Supported Media Types
Request Body - application/xml ()
Root Schema : schema
Type: object
Show Source
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : StatusResponse
Type: object
Status information for API call
Show Source

400 Response

Invalid input

404 Response

Customer ID not found
Back to Top

Examples

The following example shows a sample request and response for granting a temporary allow permission to the user.

cURL Command to Grant a Temporary Allow in JSON Format

curl --location --request PUT '<RISKCC>/risk-cc/customercare/v1/{customerId}/provision' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \
--data '{
"tempAllowType":1,
"expirationDate":"2021-10-15T01:29:29.768Z"
}'

Sample Response in JSON Format

{
    "responseCode": "0",
    "responseMessage": "",
    "status": true
}

cURL Command to Grant a Temporary Allow in XML Format

curl --location --request PUT '<RISKCC>/risk-cc/customercare/v1/{customerId}/provision' \
--header 'Content-Type: application/xml' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'
--data '<?xml version="1.0" encoding="UTF-8" ?>
<TempAllowRequest>
<tempAllowType>1</tempAllowType>
<expirationDate>2025-10-15T01:29:29.768Z</expirationDate>
</TempAllowRequest>
'

Sample Response in XML Format

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<StatusResponse>
    <responseCode>0</responseCode>
    <responseMessage></responseMessage>
    <status>true</status>
</StatusResponse>
Back to Top