Customer Authentication

Version 1.0.0
download iconDownload spec

Endpoint

POST
https://partner-omni-apis-omni-apis.att.com/omni-svcs/v1/customer/auth

Validates customer credentials and returns the authentication status along with detailed error information if applicable.

arrowRequest

Auth request body

Body Parameters

Responses

Authentication success

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
10
11
12
13
14
curl --request POST \
     --url https://partner-omni-apis-omni-apis.att.com/omni-svcs/v1/customer/auth \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "subscriberNumber": "string",
  "otp": {
    "pin": "string",
    "deliveryMethod": "string"
  },
  "passcode": "string"
}
'

RESPONSE

1
2
3
{
  "status": "string"
}