Customer Authentication

Version 1.0.2
download iconDownload spec

Endpoint

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

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

arrowRequest

Body Parameters

Responses

Authentication successful

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
curl --request POST \
     --url https://partner.att.com/omni-svcs/v1/customer/auth \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "partnerCustomerUUID": "string",
  "firstName": "string",
  "lastName": "string",
  "email": "string",
  "canBeReachedNumber": "string",
  "subscriberNumber": "string",
  "serviceAddressId": "string",
  "billingAccountNumber": "string",
  "otp": {
    "pin": "string",
    "deliveryMethod": "string"
  },
  "passcode": "string",
  "last4SSN": "string"
}
'

RESPONSE

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