Customer Authentication Methods

Version 1.0.2
download iconDownload spec

Endpoint

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

Returns a list of supported authentication methods (e.g., OTP, passcode) for a customer based on the provided intent and Customer details

arrowRequest

Auth methods request body

Body Parameters

Responses

Authentication methods returned

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
10
11
12
curl --request POST \
     --url https://partner.att.com/omni-svcs/v1/identity/auth-methods \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "firstName": "Jane",
  "lastName": "Smith",
  "subscriberNumber": "2145559999",
  "emailAddress": "jane.smith@example.com"
}
'

RESPONSE

1
2
3
4
5
6
7
8
9
10
11
12
{
  "authMethods": [
    {
      "otp": {
        "ctns": [
          "1234567890"
        ]
      },
      "passcode": "true"
    }
  ]
}