Returns the customer contact and its related information

Version v0
download iconDownload spec

Endpoint

POST
https://coms.dev.att.com/contract-inventory/contract-contact

Retrieves the contact from contract inventory

arrowRequest

Body Parameters

Responses

Successful operation

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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
curl --request POST \
     --url https://coms.dev.att.com/contract-inventory/contract-contact \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "getContractContactDetailsRequest": {
    "contractId": "string",
    "invoiceAccountNumber": "string",
    "requestType": "string"
  },
  "getContractContactDetails": {
    "contracts": [
      {
        "attContractId": "string",
        "l3AccountId": "string",
        "contractTerm": "string",
        "contractStatus": "string",
        "contractSubType": "string",
        "contractSolutionNumber": "string",
        "contractEffectiveDate": "2026-01-26T09:00:05.216Z",
        "contractEndDate": "2026-01-26T09:00:05.216Z",
        "contractCustomerName": "string",
        "contractServiceName": "string",
        "masterAgreementNumber": "string",
        "invoiceAccountNumbers": [
          {
            "invoiceAccountNumber": "string"
          }
        ],
        "customerLegalInfo": {
          "customerLegalName": "string",
          "streetAddress1": "string",
          "streetAddress2": "string",
          "city": "string",
          "stateOrProvince": "string",
          "country": "string",
          "zipOrPostalCode": "string",
          "telephone": "string"
        },
        "contacts": [
          {
            "contactType": "string",
            "firstName": "string",
            "lastName": "string",
            "title": "string",
            "phone": "string",
            "email": "string",
            "fax": "string",
            "telephoneNumber": "string",
            "address1": "string",
            "streetAddress": "string",
            "address2": "string",
            "city": "string",
            "stateProvince": "string",
            "state": "string",
            "postalCode": "string",
            "zip": "string",
            "country": "string",
            "attUid": "string",
            "positionName": "string",
            "primaryIndicator": "string",
            "lata": "string",
            "cilli": "string"
          }
        ]
      }
    ]
  }
}
'

RESPONSE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
  "getContractContactDetailsRequest": {
    "contractId": "string",
    "invoiceAccountNumber": "string",
    "requestType": "string"
  },
  "getContractContactDetails": {
    "contracts": [
      {
        "attContractId": "string",
        "l3AccountId": "string",
        "contractTerm": "string",
        "contractStatus": "string",
        "contractSubType": "string",
        "contractSolutionNumber": "string",
        "contractEffectiveDate": "2026-01-26T09:00:05.086Z",
        "contractEndDate": "2026-01-26T09:00:05.086Z",
        "contractCustomerName": "string",
        "contractServiceName": "string",
        "masterAgreementNumber": "string",
        "invoiceAccountNumbers": [
          {
            "invoiceAccountNumber": "string"
          }
        ],
        "customerLegalInfo": {
          "customerLegalName": "string",
          "streetAddress1": "string",
          "streetAddress2": "string",
          "city": "string",
          "stateOrProvince": "string",
          "country": "string",
          "zipOrPostalCode": "string",
          "telephone": "string"
        },
        "contacts": [
          {
            "contactType": "string",
            "firstName": "string",
            "lastName": "string",
            "title": "string",
            "phone": "string",
            "email": "string",
            "fax": "string",
            "telephoneNumber": "string",
            "address1": "string",
            "streetAddress": "string",
            "address2": "string",
            "city": "string",
            "stateProvince": "string",
            "state": "string",
            "postalCode": "string",
            "zip": "string",
            "country": "string",
            "attUid": "string",
            "positionName": "string",
            "primaryIndicator": "string",
            "lata": "string",
            "cilli": "string"
          }
        ]
      }
    ]
  }
}