Site Logo

List Connected Order Sources

Example

This example shows how to successfully call the GET /v-beta/order_sources endpoint.

Example Request

GET /v-beta/order_sources

1
2
3
GET /v-beta/order_sources HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Example Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"order_sources": [
{
"order_source_id": "__YOUR_ORDER_SOURCE_ID_HERE__",
"order_source_nickname": "My Shopify account",
"order_source_code": "shopify",
"order_source_friendly_name": "Shopify",
"refresh_info": {
"status": "preparing_update",
"last_refresh_attempt": null,
"refresh_date": "2018-02-10T20:55:46.673Z"
},
"active": true
}
]
}