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

Chase Order

Update a chase order on PointPay Exchange.

Details

POST``https://api.pointpay.io/fapi/v1/private/trade/chase-order

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

Request Body

Name
Type
Description
Example

orderId*

STRING

Order ID

1736254849204

price

NUMERIC

Updated chase price

65000

Fields marked with * are required.

CURL Example
curl -X POST "https://api.pointpay.io/fapi/v1/private/trade/chase-order" \
  -H "accept: application/json" \
  -H "X-TXC-APIKEY: <api-key>" \
  -H "X-TXC-PAYLOAD: <base64-payload>" \
  -H "X-TXC-SIGNATURE: <signature>" \
  -H "Content-Type: application/json" \
  -d '{
    "orderId": "1736254849204",
    "price": 65000
  }'

Response parameters:

Name
Type
Description

orderId

STRING

Updated order ID

orderLinkId

STRING

System order 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
}

Response example

{
    "code": 400,
    "success": false,
    "message": "invalid input",
    "result": []
}

Returned when the request is invalid.

Common reasons:

  • Invalid request format

  • Invalid headers

Response example

Returned when authentication headers are missing / invalid or API Keys are not enabled.

Last updated