Users
Delete User
DELETE
/
users
/
{id}
Copy
curl --request DELETE \
--url https://api.identety.dev/users/{id} \
--header 'x-api-key: <api-key>'
Copy
{
"id": "43fad864-738d-4367-a012-2b8c6948c36a",
"name": "John Doe",
"givenName": "John",
"familyName": "Doe",
"picture": "https://example.com/photo.jpg",
"locale": "en-US",
"address": {
"streetAddress": "123 Main St",
"locality": "New York",
"region": "NY",
"postalCode": "10001",
"country": "USA"
},
"metadata": {
"customField": "value"
}
}
Authorizations
Path Parameters
Response
200
application/json
Client deleted successfully
The response is of type object
.
Copy
curl --request DELETE \
--url https://api.identety.dev/users/{id} \
--header 'x-api-key: <api-key>'
Copy
{
"id": "43fad864-738d-4367-a012-2b8c6948c36a",
"name": "John Doe",
"givenName": "John",
"familyName": "Doe",
"picture": "https://example.com/photo.jpg",
"locale": "en-US",
"address": {
"streetAddress": "123 Main St",
"locality": "New York",
"region": "NY",
"postalCode": "10001",
"country": "USA"
},
"metadata": {
"customField": "value"
}
}
Assistant
Responses are generated using AI and may contain mistakes.