Create Service Request
Version 1.0.0
Create request is for Client to request creation of a Client Request in the AT&T GPS system.
POST
https://ebond.att.com/{ebondEnv}/api/clientapi/servicerequest
oauth2
Oauth2 implementation using Client Credentials - client_id & client_secret ProvidedByAT&T
clientCredentials:
scopes:
tokenUrl:https://ebond.att.com/sandbox/EdhREjkedhs234nU/oauth2/token/
Path Parameters
Query Parameters
Body Parameters
Responses
Ok
Body
application/json
Example 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
curl --request POST \
--url https://ebond.att.com/string/api/clientapi/servicerequest \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"state": "Open",
"number": "RITM0032001",
"sys_id": "d9836ba3370233007bc9ded993990ea0",
"extended": {
"SrGps_priority": "Low",
"SrGps_quantity": "1",
"SrGps_description": "Test description from Extended variables in ServiceNow",
"SrGps_AttCostcode": "anystring",
"SrGps_clientSiteIdTo": "EMEA-UK-LONDON-0225",
"SrGps_caller_id_room": "2",
"SrGps_serviceLineCode": "eLCM_LMAC_SECURITY",
"SrGps_caller_id_buildingNumber": "1",
"SrGps_requestOrderCompletionDate": "2024-10-16 14:09:25"
},
"location": "test",
"caller_id": "Alfonso Griglen",
"AttAssetId": "any string",
"work_notes": "System Administrator (Work notes)\\n update for swagger documentation.",
"AttSeverity": "5",
"description": "any string",
"location_zip": "any string",
"location_city": "London",
"resolve_notes": "any string",
"correlation_id": "any string",
"opened_by_name": "System Administrator",
"caller_id_name": "System Administrator",
"location_state": "any string",
"location_street": "any string",
"opened_by_email": "admin@example.com",
"caller_id_email": "admin@example.com",
"opened_by_phone": "any string",
"caller_id_phone": "any string",
"short_description": "eLCM_LMAC_SECURITY",
"AttIncidentStatus": "New",
"AttServiceCategory": "REQUEST-ATT",
"caller_id_user_name": "admin",
"AttIncidentOpenDate": "2025-01-29T13:50:28.374Z",
"AttResolutionAction": "any string",
"opened_by_user_name": "admin",
"correlation_display": "att_ebonding",
"AttTicketResolveDate": "2025-01-29T13:50:28.374Z",
"location_countrycode": "any string",
"AttServiceRestoredDate": "2025-01-29T13:50:28.374Z",
"AttActualCompletionDate": "2025-01-29T13:50:28.374Z",
"AttSLANegotiatedDueDate": "2025-01-29T13:50:28.374Z"
}
'
Example Response
1
2
3
4
5
6
7
{
"results": {
"sys_id": "inpsysid42324398492abds32423232da",
"number": "INC10023312",
"correlation_id": "00000042340234"
}
}