execute
POSThttps://lite-api.jup.ag/recurring/v1/execute
Execute the signed transaction and get the execution status
note
- Do note that the
requestId
is found in the response of/createOrder
or/cancelOrder
recurringType
is used to denote the type of recurring order, can betime
orprice
- Refer to Recurring API doc for more information
Request
- application/json
Bodyrequired
requestIdstringrequired
signedTransactionstringrequired
Responses
- 200
- 400
- 500
Transaction executed successfully
- application/json
- Schema
- Example (auto)
Schema
errorstring | nullnullable
orderstring | nullnullable
Base-58 account which is the Recurring Order account
signaturestringrequired
statusstringrequired
Possible values: [Success
, Failed
]
{
"signature": "string",
"status": "Success"
}
Bad request
Internal server error
- curl
- nodejs
- python
- rust
- CURL
curl -L 'https://lite-api.jup.ag/recurring/v1/execute' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"requestId": "string",
"signedTransaction": "string"
}'
ResponseClear