Cancel all working orders
curl --request POST \
--url https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders \
--header 'Authorization: Bearer <token>' \
--header 'Idempotency-Key: <idempotency-key>'import requests
url = "https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders"
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Idempotency-Key': '<idempotency-key>', Authorization: 'Bearer <token>'}
};
fetch('https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"operation": "cancel_all_orders",
"account_id": "<string>",
"status": "running",
"total_count": 100,
"succeeded_count": 100,
"failed_count": 100,
"results": [
{
"order_id": "<string>",
"status": "canceled",
"queued": true,
"failure_code": "<string>"
}
],
"created_at": 123,
"completed_at": 123
}
}{
"data": {
"id": "<string>",
"operation": "cancel_all_orders",
"account_id": "<string>",
"status": "running",
"total_count": 100,
"succeeded_count": 100,
"failed_count": 100,
"results": [
{
"order_id": "<string>",
"status": "canceled",
"queued": true,
"failure_code": "<string>"
}
],
"created_at": 123,
"completed_at": 123
}
}{
"data": {
"id": "<string>",
"operation": "cancel_all_orders",
"account_id": "<string>",
"status": "running",
"total_count": 100,
"succeeded_count": 100,
"failed_count": 100,
"results": [
{
"order_id": "<string>",
"status": "canceled",
"queued": true,
"failure_code": "<string>"
}
],
"created_at": 123,
"completed_at": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}Accounts
Cancel all working orders
Takes one bounded snapshot of the account’s ordinary resting orders and armed trigger orders, then cancels or queues cancellation for every target. In-flight market orders and TWAP, VWAP, or scaled parent orders are not included. Repeating the request with the same idempotency key resumes or replays the original snapshot.
POST
/
v1
/
accounts
/
{account_id}
/
cancel-all-orders
Cancel all working orders
curl --request POST \
--url https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders \
--header 'Authorization: Bearer <token>' \
--header 'Idempotency-Key: <idempotency-key>'import requests
url = "https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders"
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Idempotency-Key': '<idempotency-key>', Authorization: 'Bearer <token>'}
};
fetch('https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://developers.fundingperpetuals.com/v1/accounts/{account_id}/cancel-all-orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"operation": "cancel_all_orders",
"account_id": "<string>",
"status": "running",
"total_count": 100,
"succeeded_count": 100,
"failed_count": 100,
"results": [
{
"order_id": "<string>",
"status": "canceled",
"queued": true,
"failure_code": "<string>"
}
],
"created_at": 123,
"completed_at": 123
}
}{
"data": {
"id": "<string>",
"operation": "cancel_all_orders",
"account_id": "<string>",
"status": "running",
"total_count": 100,
"succeeded_count": 100,
"failed_count": 100,
"results": [
{
"order_id": "<string>",
"status": "canceled",
"queued": true,
"failure_code": "<string>"
}
],
"created_at": 123,
"completed_at": 123
}
}{
"data": {
"id": "<string>",
"operation": "cancel_all_orders",
"account_id": "<string>",
"status": "running",
"total_count": 100,
"succeeded_count": 100,
"failed_count": 100,
"results": [
{
"order_id": "<string>",
"status": "canceled",
"queued": true,
"failure_code": "<string>"
}
],
"created_at": 123,
"completed_at": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}Authorizations
API key beginning with fp_live_.
Headers
Unique printable key for this intended operation. Reuse it only for an identical retry.
Required string length:
1 - 128Path Parameters
Response
Completed operation replay.
Show child attributes
Show child attributes
⌘I