Skip to main content
POST
/
passthrough
Send passthrough request
curl --request POST \
  --url https://production.runalloy.com/passthrough \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-version: <x-api-version>' \
  --data '{
  "method": "GET",
  "path": "/some/path",
  "body": {},
  "query": {},
  "extraHeaders": {}
}'
""

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

Query Parameters

credentialId
string
required

The credentialId for this integration.

Body

application/json
method
enum<string>
Available options:
GET,
POST,
PUT,
DELETE,
PATCH
Example:

"GET"

path
string
Example:

"/some/path"

body
object | null
query
object | null
extraHeaders
object | null

Response

200 - application/json

200

The response is of type any.

I