Machines detail uri:
Code Block |
---|
/api/v2/third_party/machines/{id} |
Method:
Code Block |
---|
GET |
Header:
Code Block |
---|
'X-SIMA-APIKEY: {API-KEY}',
'X-SIMA-SYSTEM-ID: 8',
'Accept: application/json',
'Content-Type: application/json' |
Parameters:
Code Block |
---|
id: (int) |
Response example:
Code Block |
---|
{
"id": 9372,
"brand": "Maquina 1",
"model": null,
"year": null,
"beakDistance": null,
"tank": null,
"driver": null,
"applicator": 71639,
"applicationMethod": 4,
"platformWidth": null,
"hasPilot": null,
"hasHarvestMap": null,
"machineType": 5,
"machineThreshingSystem": null,
"machineHead": null,
"dateModified": "2022-05-24T00:29:25-03:00",
"dateCreated": "2021-10-18T11:12:00-03:00"
} |
Machines list uri:
Code Block |
---|
/api/v2/third_party/machines |
Method:
Code Block |
---|
GET |
Header:
Code Block |
---|
'X-SIMA-APIKEY: {{API-KEY}}',
'X-SIMA-SYSTEM-ID: 8',
'Accept: application/json',
'Content-Type: application/json' |
Parameters:
Code Block |
---|
page: (int) default value 1
size: (int) default value 10
find: (string) optional
id: (int) optional
updated_from: (datetime) optional
created_from: (datetime) optional |
Response example:
Code Block |
---|
{
"items": [
{
"id": 9372,
"brand": "Maquina 1",
"model": null,
"year": null,
"beakDistance": null,
"tank": null,
"driver": null,
"applicator": 71639,
"applicationMethod": 4,
"platformWidth": null,
"hasPilot": null,
"hasHarvestMap": null,
"machineType": 5,
"machineThreshingSystem": null,
"machineHead": null,
"dateModified": "2022-05-24T00:29:25-03:00",
"dateCreated": "2021-10-18T11:12:00-03:00"
},
{
"id": 12527,
"brand": "012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678",
"model": null,
"year": null,
"beakDistance": null,
"tank": null,
"driver": null,
"applicator": 71639,
"applicationMethod": 4,
"platformWidth": null,
"hasPilot": null,
"hasHarvestMap": null,
"machineType": 5,
"machineThreshingSystem": null,
"machineHead": null,
"dateModified": "2022-05-24T00:29:25-03:00",
"dateCreated": "2022-03-15T15:01:29-03:00"
}
],
"current_page": 1,
"next_page": 1,
"total_pages": 1,
"total_items": 2
} |