Body
Enum options: ACTIVITY_TYPE_DELETE_AUTHENTICATORS
Timestamp (in milliseconds) of the request, used to verify liveness of user requests.
Unique identifier for a given Organization.
parameters field
Unique identifier for a given User.
parameters.authenticatorIds
A list of Authenticator IDs.
Array item type: string
item field
Response
A successful response returns the following fields:
The activity object containing type, intent, and result
The intent of the activity
activity.intent.deleteAuthenticatorsIntent
The deleteAuthenticatorsIntent objectShow deleteAuthenticatorsIntent details
activity.intent.deleteAuthenticatorsIntent.userId
Unique identifier for a given User.
activity.intent.deleteAuthenticatorsIntent.authenticatorIds
A list of Authenticator IDs.Show authenticatorIds details
activity.intent.deleteAuthenticatorsIntent.authenticatorIds.item
The result of the activity
activity.result.deleteAuthenticatorsResult
The deleteAuthenticatorsResult objectShow deleteAuthenticatorsResult details
activity.result.deleteAuthenticatorsResult.authenticatorIds
Unique identifier for a given Authenticator.Show authenticatorIds details
activity.result.deleteAuthenticatorsResult.authenticatorIds.item
curl --request POST \
--url https://api.turnkey.com/public/v1/submit/delete_authenticators \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
--data '{
"type": "ACTIVITY_TYPE_DELETE_AUTHENTICATORS",
"timestampMs": "<string> (e.g. 1746736509954)",
"organizationId": "<string> (Your Organization ID)",
"parameters": {
"userId": "<string>",
"authenticatorIds": [
"<string_element>"
]
}
}'
{
"activity": {
"id": "<activity-id>",
"status": "ACTIVITY_STATUS_COMPLETED",
"type": "ACTIVITY_TYPE_DELETE_AUTHENTICATORS",
"organizationId": "<organization-id>",
"timestampMs": "<timestamp> (e.g. 1746736509954)",
"result": {
"activity": {
"type": "<string>",
"intent": {
"deleteAuthenticatorsIntent": {
"userId": "<string>",
"authenticatorIds": [
"<string_element>"
]
}
},
"result": {
"deleteAuthenticatorsResult": {
"authenticatorIds": [
"<string_element>"
]
}
}
}
}
}
}