/passthrough
.Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
The token returned when a user authenticated their account. This authorizes access to a specific account.
"con_tkn_22vUhkC6tgre4kwaYfUkCDA1rzn6eyb4"
Body
The method for the third-party request, such as GET or POST.
GET
, POST
, PUT
, PATCH
, DELETE
"POST"
The path for the third-party request, such as /reports
"/reports"
The headers to use for the request (Terminal will handle the connection's authorization headers)
The request body
"{\"reportId\":\"1234\"}"
Response
OK
The HTTP method that was used when making the request.
"POST"
The path that was called with the passthrough request.
"/reports"
The resulting status code from the passthrough request.
200
Any returned headers from the passthrough request.
{ "Content-Type": "application/json" }
The response body from the passthrough request