Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sv translation
languageen

Returns the list of all public available workflows for tour elements of a company.

Description

Status
colourGreen
titleGET
 get_tour_workflows.php?company=COMPANY_RTIKEY&import=IMPORT_RTIKEY

Parameter

parameter

description

type

hint

mandatory

companyRTI company keystring
yes
importRTI import keystring
yes
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

column

description

NAMEname of workflow
DESCRIPTIONverbose description of this workflow

JSON format

Code Block
titlereturn json
[
	{
		"name":"Spezial Reinigung",
		"description":"Das ist mein Freies Notizfeld, wo ich mir Anmerkungen zum Workflow schreiben kann."
	}
]

Example call

Code Block
titleBeispielaufruf return in CSV Formatcsv
https://map.yellowfox.de/rti/get_tour_workflows.php?company=COMPANY_RTIKEY&import=IMPORT_RTIKEY&format=csv

Example response

Code Block
titleBeispielaufruf return in CSV Formatcsv
"NAME";"DESCRIPTION"
"Spezial Reinigung";"Das ist mein Freies Notizfeld, wo ich mir Anmerkungen zum Workflow schreiben kann."