AT&T DevEx

Customer OTP Send

Version 1.0.2
download iconDownload spec

Endpoint

POST
https://partner.att.com/omni-svcs/v1/otp/send

Initiates OTP generation and delivery to the customer via specified channels such as email or sms.

arrowRequest

Generate OTP request body

Body Parameters

Responses

OTP generated successfully

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
curl --request POST \
     --url https://partner.att.com/omni-svcs/v1/otp/send \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "billingAccountNumber": "987654321",
  "deliveryMethods": [
    {
      "key": "email",
      "value": "john.doe@example.com"
    }
  ]
}
'

RESPONSE

1
2
3
4
5
6
7
8
9
{
  "expirationTimeStamp": "2025-07-10T13:43:25Z",
  "deliveryMethods": [
    {
      "key": "email",
      "value": "john.doe@example.com"
    }
  ]
}