POST
/
api
/
hris
/
v1
/
passthrough
curl --request POST \
  --url https://api.bindbee.dev/api/hris/v1/passthrough \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-connector-token: <x-connector-token>' \
  --data '{
  "method": "POST",
  "path": "/employees",
  "headers": {
    "Content-Type": "application/json"
  },
  "data": "<any>",
  "request_format": "JSON"
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-connector-token
string
required

Body

application/json
method
enum<string>
required

Method of the request

Available options:
GET,
POST,
PUT,
PATCH,
DELETE
path
string
required

Path of the request

headers
object | null
required

headers of the request

request_format
enum<string> | null
required

format of the request

Available options:
JSON,
XML,
MULTIPART
data
any | null

Body of the request

Response

200
application/json
Successful Response

The response is of type any.