...
- Acknowledgement that the work order was received
- Status change of the work order to traveling
- Status change of the work order to stop traveling
- Status change of the work order to on site
rowver
UsageThe rowver
URL parameters provides a critical role during the export process. It instructs the export API to start returning data after the value specified. The first time an export API is called rowver
should be set to 0
to return the first collection of objects. Each result set returned contains a new rowver
for the next set of data as well as a unique rowver
value for each individual object returned. This requires the backend save the appropriate rowver
value to be used ini the next call to the API.
...
Note |
---|
Although rowver may look like an auto-incrementing value, it is not and should not be treated as such.
|
Code Block |
---|
language | js |
---|
firstline | 1 |
---|
title | Example Export Result Set | firstline |
---|
1 | linenumbers | true |
---|
|
{
"rowver" : "72",
"rows" : [
{
"rowver" : "61",
"UserID" : "",
"UserAudit" : {
.
.
}
},
{
"rowver" : "65",
"UserID" : "",
"UserAudit" : {
.
.
}
},
{
"rowver" : "72",
"UserID" : "",
"UserAudit" : {
.
.
}
}
]
} |
Panel |
---|
borderColor | grey |
---|
bgColor | whitesmoke |
---|
|
Expoer REST APIs Child pages (Children Display) |
---|
depth | 1 |
---|
page | Export REST APIs |
---|
first | 1 |
---|
|
|