GET
/
webhook
/
flow
/
company
/
outbound
curl --request GET \
  --url http://sandbox.mintlify.com/webhook/flow/company/outbound \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "message": "<string>",
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_by": "<string>",
      "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "logo": "<string>",
      "retry_delay": 123,
      "retry_delay_unit": "SECONDS",
      "max_retries": 123,
      "status": "SCHEDULED",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "deleted_at": "2023-11-07T05:31:56Z",
      "executions": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "status": "scheduled",
          "attempt_number": 123,
          "next_retry_at": "2023-11-07T05:31:56Z",
          "executed_at": "2023-11-07T05:31:56Z",
          "finished_at": "2023-11-07T05:31:56Z",
          "error_message": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z"
        }
      ],
      "steps": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "step_number": 123,
          "webhook_url": "<string>",
          "webhook_url_params": {},
          "webhook_method": "GET",
          "webhook_headers": {},
          "webhook_body": {},
          "webhook_timeout": 123,
          "depends_on_step": 123,
          "retry_limit": 123,
          "timeout": 123,
          "success_condition": {},
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z",
          "deleted_at": "2023-11-07T05:31:56Z"
        }
      ],
      "is_template": true,
      "flow_direction": "INBOUND",
      "flow_mapping": {},
      "predefinedVariables": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ],
      "variables": [
        {
          "name": "<string>",
          "location": "<string>",
          "stepId": 123,
          "type": "<string>",
          "dataType": "<string>",
          "customValue": "<string>"
        }
      ],
      "tag_name": "<string>",
      "category_name": "<string>"
    }
  ]
}

Get Webhooks

Overview

This endpoint retrieves a list of Webhooks associated with the authenticated user’s company.

Endpoint Details

  • URL: https://api.callab.ai/webhook/flow/company/outbound
  • Method: GET
  • Authentication: Required (API KEY)

Request Headers

HeaderValueDescription
AuthorizationBearer <api_key>Your API KEY

    Response Format

    The response will include a list of webhook flows with their details, including:

    • Flow identification (ID, name, company)
    • Configuration (retry settings, status)
    • Execution history
    • Flow steps and variables
    • Metadata (tags, categories)

    For the complete response schema, refer to the OpenAPI specification above.

    Authorizations

    Authorization
    string
    header
    required

    Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

    Response

    200 - application/json
    Webhook response
    status
    enum<string>
    Available options:
    ok,
    error
    message
    string
    data
    object[]