DELETE
/
3p
/
api
/
v2
/
users
/
{uuid}
curl --request DELETE \
     --url https://api-sandbox.grailpay.com/3p/api/v2/users/uuid \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
{
  "status": true,
  "message": "The user has been deleted successfully.",
  "data": [],
  "errors": null,
  "error_code": null
}

DELETE https://api-sandbox.grailpay.com/3p/api/v2/users/{uuid}

This endpoint allows for the deletion of a user

Path Params

uuid
string
required

Registered business or person uuid

Responses

200

Response Body
object
status
boolean
default:true
message
string
data
array
errors
string
error_code
string

202

Response Body
object
status
boolean
default:true
message
string
data
array
errors
string
error_code
string
curl --request DELETE \
     --url https://api-sandbox.grailpay.com/3p/api/v2/users/uuid \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
{
  "status": true,
  "message": "The user has been deleted successfully.",
  "data": [],
  "errors": null,
  "error_code": null
}