DELETE
/
users
/
{userID}
/
identifiers
/
{identifierID}
Delete a login identifier for a user
curl --request DELETE \
  --url https://backendapi.corbado.io/v2/users/{userID}/identifiers/{identifierID} \
  --header 'Authorization: Basic <encoded-value>'
{
  "httpStatusCode": 123,
  "message": "OK",
  "requestData": {
    "requestID": "req-557...663",
    "link": "https://my.corbado.com/requests/req-xxxxxxxxxxxxxxxxxxx"
  },
  "runtime": 0.06167686
}

Authorizations

Authorization
string
header
required

Basic authentication is used to authenticate requests to the Backend API. The username is the project ID and the password is the API secret.

The project ID and API secret can be found in the Developer Panel.

Path Parameters

userID
string
required

Unique identifier of the user. Format: usr-<number>.

Example:

"usr-4693224802260150919"

identifierID
string
required

Unique identifier of the login identifier (e.g., email address or phone number). Format: ide-<number>.

Example:

"ide-4693224802260150919"

Response

200
application/json

Operation succeeded.

The response is of type object.