POST
/
authentication
/
feedback
curl --request POST \
  --url https://api.ding.live/v1/authentication/feedback \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "customer_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "phone_number": "+1234567890",
  "status": "onboarded"
}'
{
  "uuid": "123e4567-e89b-12d3-a456-4266141740a0"
}

The V1 API is deprecated. Technical support will end by October 2025 and will be removed by April 2026. No new features nor functionality will be added to the V1 API. Please use the V2 Verify API instead. For more information refer to the V2 Migration Guide.

Authorizations

x-api-key
string
header
required

Body

application/json
customer_uuid
string
required

Your customer UUID, which can be found in the API settings in the dashboard.

phone_number
string
required

An E.164 formatted phone number.

Example:

"+1234567890"

status
enum<string>
required

The type of the feedback.

Available options:
onboarded,
not_onboarded
Example:

"onboarded"

Response

200
application/json
OK
uuid
string

The UUID of the feedback.

Example:

"123e4567-e89b-12d3-a456-4266141740a0"