For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete Favorite

Remove a futures pair from favorites on PointPay Exchange.

Details

DELETE https://api.pointpay.io/fapi/v1/private/favorites/{id}

Headers

Name
Type
Description

X-TXC-APIKEY*

STRING

Public API key

X-TXC-PAYLOAD*

STRING

Base64-encoded request body

X-TXC-SIGNATURE*

STRING

HmacSHA512 signature of the request body

Path Parameters

Name
Type
Description
Example

pair*

STRING

Pair

BTCUSDT

Fields marked with * are required.

CURL Example
curl -X DELETE "https://api.pointpay.io/fapi/v1/private/favorites/1" \
  -H "accept: application/json" \
  -H "X-TXC-APIKEY: <api-key>" \
  -H "X-TXC-PAYLOAD: <base64-payload>" \
  -H "X-TXC-SIGNATURE: <signature>"

200: OK Successful

Response parameters:

Name
Type
Description

orderId

STRING

Response ID

orderLinkId

STRING

Client response ID

Response example:

{
  "notification": null,
  "warning": null,
  "variables": null,
  "status": "000000",
  "response": {
    "orderId": "6ac24069-2bd7-4ed4-8b4e-8d62fa564b3c",
    "orderLinkId": "4e15dca7-9d58-486b-8eae-13ceeaf849ad"
  },
  "errors": null
}

Last updated