Skip to main content
The api-request-to-external-app function type makes arbitrary API requests to the API of the current external app with authentication applied automatically.

Usage

This function type is used in Actions to make authenticated API requests to external applications.

Configuration Example

Configuration Parameters

  • request.path - API endpoint path (supports {paramName} substitution)
  • request.method - HTTP method (GET, POST, PUT, DELETE, etc.) - defaults to GET
  • request.pathParameters - Path parameter substitutions
  • request.query - Query parameters
  • request.data - Request body
  • request.headers - Additional headers
  • responseSchema - Expected response schema (optional)
  • allowNon2xx - Allow non-200 responses (default: false)

Output Schema