For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete Users

Allows batch deletion of users registered in the authentication system.

Endpoint

DELETE /services/authenticateUser

Headers

Name
Type
Required
Description

x-api-key

string

Yes

API Key for access authorization.

family

string

No

Value: Authentication. Required with the tracking service.

All calls to the tracking Endpoints with Identity Platform must contain the header family.

Request body

Content-Type: application/json

Parameters

Parameter
Type
Required
Description

userIds

string[]

Yes

List of unique identifiers of the users to be deleted.

Request example

{
  "userIds": ["001"]
}

Responses

200 Success

Response parameters

Parameter
Type
Description

serviceResultCode

integer

Code that indicates the overall result of the service execution. See Service Result Code

serviceResultLog

string

Descriptive field of the result of the service execution. Includes details when there is an error or exception.

timestamp

string

Timestamp (UTC) of the response in format YYYY-MM-DDThh🇲🇲ssZ

transactionId

string

Transaction identifier associated with the request processed by the API.

Service Result Code

The serviceResultCode indicates the overall result of the service execution:

serviceResultCode
Description
HTTP code

0

The service execution was successful, the module processed the request correctly.

200

Response example

400 Bad Request

401 Unauthorized

403 Forbidden

502 Bad Gateway

504 Gateway Timeout

Last updated