...
This endpoint is used to retrieve information on all comprehensive data on a single registered job tracker stations registered station in Rx-Universe
...
Accepts
A limit. If provided only this many job tracker station records will be returned. Please note that the default value of 10 listed in swagger is the default value set for the Swagger UI only - calling the endpoint without a limit from your system will return all records, not 10. An offset. This is intended for use with the limit to retrieve records in batches.
"limit": 10, "offset": 0
returns the first 10 records;"limit": 10, "offset": 10
retrieves records 11-20; etc.code, which must be the unique identifying code for the stationThis station can be retrieved using
LP
. Case matters (lp
will not retrieve a record).
Returns
Success
A JSON object representing the requested job tracker stations
The total count of job tracker stations, ignoring provided limit and offset
An array of objects representing the requested job tracker stations
station
Property | Description |
code | string The unique code identifying the job tracker station |
desc | string The text description for the job tracker station |
customerDesc | string The customer description for the station |
operator | boolean If true the station is flagged as an operator. source is Operator. |
Error
If the code parameter does not match any station in the system an HTTP 404 code will be returned with the standard error body
Code Block | ||
---|---|---|
| ||
{
"error": "No record found",
"details": [
"Provided: 000"
]
} |