DELETE
/
account
/
api
/
v1
/
sessionAccessGrant
curl --request DELETE \
  --url https://svc.sandbox.anon.com/account/api/v1/sessionAccessGrant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "sessionId": "<string>",
  "appUserId": "<string>"
}'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
sessionId
string
required
appUserId
string
required

Response

200 - application/json
Successful response

Session access grant deleted

message
string
required

Was this page helpful?