GET v1/Clients/{clientId}/Atgs?updatedSinceUtc={updatedSinceUtc}&facilityIds={facilityIds}&includeDeleted={includeDeleted}
Gets ATGs.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientId |
Client identifier. |
globally unique identifier |
Required |
updatedSinceUtc |
Date since facility was last updated. |
date |
None. |
facilityIds |
Facility identifiers in CSV format. |
string |
None. |
includeDeleted |
If deleted ATGs should be included. |
boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
A .
AtgV1Name | Description | Type | Additional information |
---|---|---|---|
ClientId |
The client id. |
globally unique identifier |
None. |
FacilityId |
The facility id. |
integer |
None. |
AtgOnSite |
If ATG is on site. |
boolean |
None. |
AtgManufacturer |
The ATG manufacturer. |
string |
None. |
AtgModel |
The ATG model. |
string |
None. |
AtgLocation |
The ATG location. |
string |
None. |
AtgInstallContractor |
The ATG installation contractor. |
string |
None. |
AtgInstallDate |
The ATG installation date. |
date |
None. |
AtgSerial |
The ATG serial number. |
string |
None. |
AtgSoftVer |
The ATG software version. |
string |
None. |
AtgIpAdd |
The ATG IP address. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ClientId": "e21dabfe-3c23-495e-a8ef-07d33239bce2", "FacilityId": 2, "AtgOnSite": true, "AtgManufacturer": "sample string 3", "AtgModel": "sample string 4", "AtgLocation": "sample string 5", "AtgInstallContractor": "sample string 6", "AtgInstallDate": "2025-05-13T10:53:00.4744342+00:00", "AtgSerial": "sample string 7", "AtgSoftVer": "sample string 8", "AtgIpAdd": "sample string 9" }
application/xml, text/xml
Sample:
<Atg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Fuel.Models"> <AtgInstallContractor>sample string 6</AtgInstallContractor> <AtgInstallDate>2025-05-13T10:53:00.4744342+00:00</AtgInstallDate> <AtgIpAdd>sample string 9</AtgIpAdd> <AtgLocation>sample string 5</AtgLocation> <AtgManufacturer>sample string 3</AtgManufacturer> <AtgModel>sample string 4</AtgModel> <AtgOnSite>true</AtgOnSite> <AtgSerial>sample string 7</AtgSerial> <AtgSoftVer>sample string 8</AtgSoftVer> <ClientId>e21dabfe-3c23-495e-a8ef-07d33239bce2</ClientId> <FacilityId>2</FacilityId> </Atg>