Skip to Content
TeamioVacancies importDescription of the interface

Description of the interface

  • The external application sends an HTTP request to the upload interface with the import file (authentication data is included in the POST method)
  • After successful authentication, the loaded file will be converted and placed in the Teamio “Drafts” folder
  • In case of failed authentication, an error message will be sent to your external application
  • Information about the status for the imported vacancies is sent to the main user by e-mail
  • Only HTTPS protocol is supported

Syntax of HTTP request

Example

POST /import/custompath/import HTTP/1.0 Host: g2.lmc.cz Content-type: application/x-www-form-urlencoded Accept: */* username=importlogin1&password=123456&xmlString=...

cURL command line example for testing/debugging

curl --location --request POST 'https://g2.lmc.cz/import/custompath/import' \ --header 'cache-control: no-cache' \ --header 'content-type: application/x-www-form-urlencoded' \ --data-urlencode 'username=importlogin1' \ --data-urlencode 'password=123456' \ --data-urlencode 'xmlString=<content of import XML>'
Last updated on