Returns the list of all public available workflows for tour elements of a company.
Description
GET get_tour_workflows.php?company=COMPANY_RTIKEY&import=IMPORT_RTIKEY
Parameter
parameter | description | type | hint | mandatory |
---|---|---|---|---|
company | RTI company key | string | yes | |
import | RTI import key | string | yes | |
format | response format | string | 'csv' or'json'. Default is 'csv'. | no |
Return
A character string is returned. On error "403 - forbidden: access denied." http-header will be sent.
CSV format
On a correct request the report data will be sent as CSV (comma separated value). First line is the header with column names. Data is follwoing afterwards.
Meta information
separator | semicolon ( ; ) |
---|---|
text delimiter | double quotes ( " ) |
line end | 0x0D 0x0A (CarriageReturn LineFeed) |
header | line 1 |
encoding | UTF-8 |
Columns
column | description |
---|---|
NAME | name of workflow |
DESCRIPTION | verbose description of this workflow |
JSON format
return json
[ { "name":"Spezial Reinigung", "description":"Das ist mein Freies Notizfeld, wo ich mir Anmerkungen zum Workflow schreiben kann." } ]
Example call
return in csv
https://map.yellowfox.de/rti/get_tour_workflows.php?company=COMPANY_RTIKEY&import=IMPORT_RTIKEY&format=csv
Example response
return in csv
"NAME";"DESCRIPTION" "Spezial Reinigung";"Das ist mein Freies Notizfeld, wo ich mir Anmerkungen zum Workflow schreiben kann."