curl --request POST \
--url https://admin.snagsolutions.io/api/token_claims/{id}/claim \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"walletAddress": "<string>"
}'
{
"message": "<string>",
"data": {
"walletAddress": "<string>",
"tokenClaimId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"claimedAt": "2023-11-07T05:31:56Z",
"totalAllocation": 123
}
}
Update a user claim status after a user has claimed
curl --request POST \
--url https://admin.snagsolutions.io/api/token_claims/{id}/claim \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"walletAddress": "<string>"
}'
{
"message": "<string>",
"data": {
"walletAddress": "<string>",
"tokenClaimId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"claimedAt": "2023-11-07T05:31:56Z",
"totalAllocation": 123
}
}
Body
The body is of type object
.
200
The response is of type object
.
Was this page helpful?