Orders
List all orders
Returns all orders.
GET
/
orders
List all orders
curl --request GET \
--url https://app.gomangrove.com/api/v1/orders \
--header 'Authorization: <api-key>'import requests
url = "https://app.gomangrove.com/api/v1/orders"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://app.gomangrove.com/api/v1/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://app.gomangrove.com/api/v1/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-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://app.gomangrove.com/api/v1/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.gomangrove.com/api/v1/orders")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.gomangrove.com/api/v1/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 1529,
"order_status": "COMPLETE",
"customer": "AcmeCo",
"reference": "A1234567890",
"deal_date": "2025-01-28",
"expiry_date": null,
"currency": "USD",
"order_terms": "Pay on delivery",
"delivery_method": "RETIREMENT",
"deliveries": [
{
"friendly_id": "dl_H8pvrPHBQ3Dd76oL",
"project_name": "Southeast Capture",
"quantity": 20,
"price_in_cents_in_currency": 12000,
"delivery_total_in_cents_in_currency": 12000,
"currency": "USD",
"estimated_delivery_date": "2025-02-28",
"delivered_date": "2025-02-21",
"delivery_status": "DELIVERED",
"fulfilled_quantity": 20,
"delivered_quantity": 20,
"is_paid": true
}
],
"created_at": "2024-05-10T15:58:21.209Z",
"updated_at": "2024-05-10T15:58:21.209Z"
},
{
"id": 1530,
"order_status": "COMPLETE",
"customer": "AcmeCo",
"reference": "A1234567890",
"deal_date": "2025-01-28",
"expiry_date": null,
"currency": "USD",
"order_terms": "Pay on delivery",
"delivery_method": "RETIREMENT",
"deliveries": [
{
"friendly_id": "dl_F8pvrPHBQ3Dd7695",
"project_name": "Southeast Capture",
"quantity": 20,
"price_in_cents_in_currency": 12000,
"delivery_total_in_cents_in_currency": 12000,
"currency": "USD",
"estimated_delivery_date": "2025-02-28",
"delivered_date": "2025-02-21",
"delivery_status": "DELIVERED",
"fulfilled_quantity": 20,
"delivered_quantity": 20,
"is_paid": true
}
],
"created_at": "2024-05-10T15:58:21.209Z",
"updated_at": "2024-05-10T15:58:21.209Z"
}
],
"info": {
"items": 2,
"count": 2,
"page": 1,
"from": 1,
"to": 10,
"next": 1,
"prev": null,
"pages": 1
}
}"{}"Authorizations
Query Parameters
Controls response format. default returns paginated data. summary returns count and 10 samples. summary_with_export returns summary and triggers an async export.
Available options:
default, summary, summary_with_export File format for async export (only with response_mode=summary_with_export). Default: csv.
Available options:
csv, json ⌘I
List all orders
curl --request GET \
--url https://app.gomangrove.com/api/v1/orders \
--header 'Authorization: <api-key>'import requests
url = "https://app.gomangrove.com/api/v1/orders"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://app.gomangrove.com/api/v1/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://app.gomangrove.com/api/v1/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-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://app.gomangrove.com/api/v1/orders"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.gomangrove.com/api/v1/orders")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.gomangrove.com/api/v1/orders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 1529,
"order_status": "COMPLETE",
"customer": "AcmeCo",
"reference": "A1234567890",
"deal_date": "2025-01-28",
"expiry_date": null,
"currency": "USD",
"order_terms": "Pay on delivery",
"delivery_method": "RETIREMENT",
"deliveries": [
{
"friendly_id": "dl_H8pvrPHBQ3Dd76oL",
"project_name": "Southeast Capture",
"quantity": 20,
"price_in_cents_in_currency": 12000,
"delivery_total_in_cents_in_currency": 12000,
"currency": "USD",
"estimated_delivery_date": "2025-02-28",
"delivered_date": "2025-02-21",
"delivery_status": "DELIVERED",
"fulfilled_quantity": 20,
"delivered_quantity": 20,
"is_paid": true
}
],
"created_at": "2024-05-10T15:58:21.209Z",
"updated_at": "2024-05-10T15:58:21.209Z"
},
{
"id": 1530,
"order_status": "COMPLETE",
"customer": "AcmeCo",
"reference": "A1234567890",
"deal_date": "2025-01-28",
"expiry_date": null,
"currency": "USD",
"order_terms": "Pay on delivery",
"delivery_method": "RETIREMENT",
"deliveries": [
{
"friendly_id": "dl_F8pvrPHBQ3Dd7695",
"project_name": "Southeast Capture",
"quantity": 20,
"price_in_cents_in_currency": 12000,
"delivery_total_in_cents_in_currency": 12000,
"currency": "USD",
"estimated_delivery_date": "2025-02-28",
"delivered_date": "2025-02-21",
"delivery_status": "DELIVERED",
"fulfilled_quantity": 20,
"delivered_quantity": 20,
"is_paid": true
}
],
"created_at": "2024-05-10T15:58:21.209Z",
"updated_at": "2024-05-10T15:58:21.209Z"
}
],
"info": {
"items": 2,
"count": 2,
"page": 1,
"from": 1,
"to": 10,
"next": 1,
"prev": null,
"pages": 1
}
}"{}"