POST
/
unified
/
proxy
curl --request POST \
  --url https://api.stackone.com/unified/proxy \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --data '{
  "url": "https://api.sample-integration.com/v1",
  "method": "get",
  "path": "/employees/directory",
  "headers": {
    "Content-Type": "application/json"
  },
  "body": {}
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Headers

x-account-id
string
required

The account identifier

Body

application/json
The request body

The body is of type object.

Response

200

The proxy request was successful.