get_tour_workflows.php

Last modified by YellowFox_RD on 2024/12/19 10:11

Table of Contents

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

parameterdescriptiontypehintmandatory
companyRTI company keystringyes
importRTI import keystringyes
formatresponse formatstring'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

separatorsemicolon ( ; )
text delimiterdouble quotes ( " )
line end0x0D 0x0A (CarriageReturn LineFeed)
headerline 1
encodingUTF-8

Columns

columndescription
NAMEname of workflow
DESCRIPTIONverbose 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."