curl --request GET \
--url https://api.goevery.co/v1/orders \
--header 'Authorization: Bearer <token>'{
"orders": [
{
"name": "orders/669a8cba6af86466a42de2fe",
"createTime": "2024-07-17T21:32:52.478Z",
"updateTime": "2024-07-17T21:32:52.478Z",
"status": "NEW",
"recipient": {
"firstName": "Valentina",
"lastName": "Rodríguez López",
"email": "[email protected]",
"phoneNumber": "+573193210329",
"address": {
"regionCode": "CO",
"administrativeArea": "Antioquia",
"locality": "Abejorral",
"addressLines": [
"Calle 123",
"Apto 2"
],
"organization": "Happeett"
},
"location": "locations/CO-11001000",
"documentType": "CC",
"document": "1040777098"
},
"contentDescription": "Shoes",
"notes": "1 Pair of Reebok Nano, Size 8, Color Black",
"sellingPriceCents": 1430000,
"cashOnDeliveryRequestCents": 8900000,
"customerReliability": "RELIABLE",
"customerBehavior": {
"totalShipments": 10,
"deliveredShipments": 8,
"returnedShipments": 2,
"reliability": "RELIABLE"
},
"shipment": "shipments/669986bb4ae1239d5a92cdff",
"referenceId": "4012",
"referenceGid": "93240958723",
"referenceUrl": "https://mystore.com/order/1234567890",
"paymentMethods": [
"cash_on_delivery",
"credit_card"
]
}
],
"nextPageToken": "<string>"
}curl --request GET \
--url https://api.goevery.co/v1/orders \
--header 'Authorization: Bearer <token>'{
"orders": [
{
"name": "orders/669a8cba6af86466a42de2fe",
"createTime": "2024-07-17T21:32:52.478Z",
"updateTime": "2024-07-17T21:32:52.478Z",
"status": "NEW",
"recipient": {
"firstName": "Valentina",
"lastName": "Rodríguez López",
"email": "[email protected]",
"phoneNumber": "+573193210329",
"address": {
"regionCode": "CO",
"administrativeArea": "Antioquia",
"locality": "Abejorral",
"addressLines": [
"Calle 123",
"Apto 2"
],
"organization": "Happeett"
},
"location": "locations/CO-11001000",
"documentType": "CC",
"document": "1040777098"
},
"contentDescription": "Shoes",
"notes": "1 Pair of Reebok Nano, Size 8, Color Black",
"sellingPriceCents": 1430000,
"cashOnDeliveryRequestCents": 8900000,
"customerReliability": "RELIABLE",
"customerBehavior": {
"totalShipments": 10,
"deliveredShipments": 8,
"returnedShipments": 2,
"reliability": "RELIABLE"
},
"shipment": "shipments/669986bb4ae1239d5a92cdff",
"referenceId": "4012",
"referenceGid": "93240958723",
"referenceUrl": "https://mystore.com/order/1234567890",
"paymentMethods": [
"cash_on_delivery",
"credit_card"
]
}
],
"nextPageToken": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The maximum number of locations to return. Defaults to 100 if not specified. Must be a positive number and not exceed 1000.
x <= 1000100
A token to retrieve the next page of results. Used for pagination.
Filter orders by status. Accepts a comma-separated list of statuses. Valid values: NEW, CONFIRMED, READY, IN_PROGRESS, CANCELLED, DELIVERED, RETURN.
"NEW,CONFIRMED"
Search orders by recipient name, phone number, or reference ID. Performs fuzzy matching on recipient names and exact matching on phone numbers and reference IDs.
"Valentina"
Successfully fetched a list of orders.
An array of orders.
Show child attributes
The unique identifier of the order.
"orders/669a8cba6af86466a42de2fe"
The timestamp when the order was created.
"2024-07-17T21:32:52.478Z"
The timestamp when the order was last updated.
"2024-07-17T21:32:52.478Z"
The current status of the order.
NEW, CONFIRMED, READY, IN_PROGRESS, CANCELLED, DELIVERED, RETURN "NEW"
Details of the recipient of the order.
Show child attributes
The first name of the order recipient.
"Valentina"
The last name of the order recipient.
"Rodríguez López"
The email address of the recipient.
The phone number of the recipient.
"+573193210329"
The address details.
Show child attributes
The ISO 3166-1 alpha-2 region code representing the country or territory.
"CO"
The primary administrative division, such as a state or province, within the region.
"Antioquia"
The specific city, town, or municipality.
"Abejorral"
Two lines detailing the specific street address, including street name, building number, apartment or suite number, and any other relevant details.
["Calle 123", "Apto 2"]The name of the organization associated with this address, if applicable.
"Happeett"
The resource name of the destination location.
96"locations/CO-11001000"
The type of document identifying the recipient.
CC, CE, NI, TI "CC"
The document number of the recipient.
"1040777098"
A description of the package content.
3 - 128"Shoes"
A detailed description of the contents of this package and additional information.
3 - 2048"1 Pair of Reebok Nano, Size 8, Color Black"
The order selling price, just for reporting purposes.
1430000
The amount to be collected on delivery in cents.
x >= 08900000
The reliability of the customer.
RELIABLE, MODERATE, UNRELIABLE, NO_ORDERS "RELIABLE"
Show child attributes
The total number of shipments made by the customer.
10
The total number of shipments delivered by the customer.
8
The total number of shipments returned by the customer.
2
The reliability of the customer.
RELIABLE, MODERATE, UNRELIABLE, NO_ORDERS "RELIABLE"
The unique identifier for the associated shipment.
"shipments/669986bb4ae1239d5a92cdff"
The ID of the order in the external system that created it, like Shopify order name.
"4012"
The global identifier of the order in the external system, like Shopify order GID.
"93240958723"
The URL to the order in the external system, like Shopify order URL.
"https://mystore.com/order/1234567890"
Payment methods used for this order.
["cash_on_delivery", "credit_card"]A token to retrieve the next page of results, if any.