Skip to main content

Send passthrough request

POST 

https://embedded.runalloy.com/2024-03//passthrough

This endpoint makes it easy to send a passthrough request to the underlying Third Party App using a specified credentialId. It returns the raw data coming from the Third Party App.

Request

Query Parameters

    credentialId stringrequired

    The credentialId for the user.

Header Parameters

    Authorization stringrequired

    Default value: bearer YOUR_API_KEY

Body

required

    method string

    Possible values: [GET, POST, PUT, DELETE, PATCH]

    path string
    body objectnullable
    query objectnullable
    extraHeaders objectnullable

Responses

200


curl -L 'https://embedded.runalloy.com/2024-03/passthrough' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "GET",
"path": "/some/path",
"body": {},
"query": {},
"extraHeaders": {}
}'
Request Collapse all
Base URL
https://embedded.runalloy.com/2024-03
Parameters
— queryrequired
— headerrequired
Body required
{
  "method": "GET",
  "path": "/some/path",
  "body": {},
  "query": {},
  "extraHeaders": {}
}
ResponseClear

Click the Send API Request button above and see the response here!