curl --request DELETE \
--url https://api.yapily.com/users/{userUuid} \
--header 'Authorization: Basic <encoded-value>'{
"meta": {
"tracingId": "e6625041a9fb46e2a450b3f9f1528cb8"
},
"data": {
"id": "b8ebe390-f6fb-45b5-bf20-1b4436644390",
"deleteStatus": "SUCCESS",
"creationDate": "2021-06-07T16:44:52.221Z",
"userConsents": [
{
"institutionId": "modelo-sandbox"
}
]
}
}Delete a user from your application along with any sub-resources (including consent resources on institution APIs if they exist)
curl --request DELETE \
--url https://api.yapily.com/users/{userUuid} \
--header 'Authorization: Basic <encoded-value>'{
"meta": {
"tracingId": "e6625041a9fb46e2a450b3f9f1528cb8"
},
"data": {
"id": "b8ebe390-f6fb-45b5-bf20-1b4436644390",
"deleteStatus": "SUCCESS",
"creationDate": "2021-06-07T16:44:52.221Z",
"userConsents": [
{
"institutionId": "modelo-sandbox"
}
]
}
}Use HTTP Basic Authentication with your Application ID as username and Application Secret as password. Manage credentials in the Yapily Console. See Authentication for details.
Mandatory. The Yapily generated UUID for the user.
Was this page helpful?