Send passthrough request
POSThttps://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
- application/json
Body
required
method string
Possible values: [GET
, POST
, PUT
, DELETE
, PATCH
]
path string
body objectnullable
query objectnullable
extraHeaders objectnullable
Responses
- 200
200
- application/json
- Schema
- Result
Schema
any
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
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": {}
}'
ResponseClear