Overview of a POST request

The following example explains the raw POST request as it is sent to Connector.ashx:

POST  /WebServices/Connector.ashx HTTP/1.1
Host: <>
Content-type: application/x-www-form-urlencoded
Content-length: <<length_of_data>>
Connection: close

Several parameter should be added to the request to make it more specific. Which parameters to use depend on the desired action.

ParameterValue

Username

An existing user in Ultimo (Id) with authorisation to execute connectors

Password

Password of the above user

Action

'export' when retrieving data from Ultimo

'import' when changing data in Ultimo

ExportName

Required when action is 'export'. Id of the export connector.

ImportName

Required when action is 'import'. Id of the import connector.

Last updated