B2B Edition
Proxy

Proxy

Third party API proxy

POST /proxy
⚠️
This endpoint is deprecated.

Request

Get response data of third party APIs through this API.

Authentication

  • authToken in header

Parameters

  • authToken in header - string
    required
    Auth token in header.

Body

object | application/json
Request body
  • data
    string

    Request data of your third party request
  • method
    string
    required

    HTTP request method, get/post/put/delete
  • params
    string

    Request parameters of your third party request
  • proxyType
    string
    required

    Third party type or name, such as BigCommerce
  • url
    string
    required

    Url of request

example

{
"data": "string",
"method": "string",
"params": "string",
"proxyType": "string",
"url": "string"
}

Response

Response Success

Body

object | application/json
  • code
    number

    Response status code
  • message
    string

    Response message

example

{
"code": 200,
"message": "Success"
}
Did you find what you were looking for?