Credit Check

Version 1.0.2
download iconDownload spec

Endpoint

POST
https://partner.att.com/omni-svcs/v1/credit-application

Enables external partners to perform a real‐time credit check on a customer account, returning a risk classification (e.g., LOW or HIGH) and any recommended next steps before order submission. <br/> Note: There is no way to proceed once credit status results in Fraud Risk, Abusive Risk, or Analyst Review

arrowRequest

Credit transaction request payload

Header Parameters

    Body Parameters

    Responses

    Credit response

    arrowBody

    application/json

    REQUEST

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    curl --request POST \
         --url https://partner.att.com/omni-svcs/v1/credit-application \
         --header 'accept: application/json' \
         --header 'content-type: application/json' \
         --data '
    {
      "cartId": "8256a5e0-b5da-11f0-9a9b-a592d05bf939",
      "userInfo": {
        "birthdate": "1959-01-01",
        "legalId": [
          {
            "identificationId": "666050459",
            "identificationType": "SocialSecurityNumber"
          }
        ]
      }
    }
    '

    RESPONSE

    1
    2
    3
    4
    5
    6
    {
      "unifiedCreditTransactionId": "U35456657879",
      "casApplicationId": "602177078164",
      "unifiedPolicyTransactionId": "P20210818000068739",
      "creditRisk": "LOW"
    }