Kombo · Example Payload

Kombo Postpassthroughtoolapi Example

ATSEmbedded iPaaSHRISLMSPayrollUnified API

Kombo Postpassthroughtoolapi Example is an example object payload from Kombo, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "PostPassthroughToolApi",
  "method": "POST",
  "path": "/passthrough/{tool}/{api}",
  "summary": "Send passthrough request",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "example1",
      "example": {
        "method": "GET",
        "path": "/company/employees"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "example1",
      "example": {
        "status": "success",
        "data": {
          "url": "https://api.personio.de/v1/company/employees",
          "status": 200,
          "headers": {
            "content-type": "application/json"
          },
          "data": {
            "success": true,
            "data": [
              {
                "id": 123,
                "first_name": "John",
                "last_name": "Doe"
              }
            ]
          }
        },
        "warnings": [
          {
            "message": "This is an example warning!"
          }
        ]
      }
    }
  ]
}