Un-freeze user on collection
Path: v1/hts/api/integration/unfreeze-user-on-collection
How to use
To un-freeze user on collection the ‘collectionId’ representing the collection to unfreeze and the email address of the user to be unfrozen should be provided.

Parameter List
Below table represents the parameters, data type of parameter and whether the parameter is required or not for un-freezing a collection.
| Field | Type | Required | Usage |
|---|---|---|---|
| collectionId | String | Required | "collectionId" is used to identify the collection to consider for unfreezing. |
| targetEmailAddress | String | Required | Email address of the user to be unfrozen. |
cURL command
curl --request POST \
--url http://<dgverse-api-base-url>/v1/hts/api/integration/unfreeze-user-on-collection \
--header 'Authorization: Bearer <YOUR_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{"collectionId": "<VALUE>", "targetEmailAddress": "<VALUE>"}'
Response
A ‘200 Ok’ status means the un-freezing process is successful. 
Error troubleshooting
- 400 Bad Request: The collection provided to freeze is not associated with this account. Or user with email address not found.
