ZEESHAN AKRAM
ZEESHAN AKRAM

Reputation: 47

How to use bigcommerce api get json reponse using postman

Hello I have a bigcommerce account and I want to get order list . How to get json response using postman and integrate using URL using jQuery ajax .

I have this information :

ACCESS TOKEN: xxxxxxxxxx

CLIENT ID: xxxxxxxxxx

CLIENT SECRET: xxxxxxxxxx

NAME: Brisk Sol API PATH: https://api.bigcommerce.com/stores/4jwabif3gj/v3/

I want to get orders list in postman I have use api path but got error:

{
    "status": 404,
    "title": "Not found",
    "type": "https://developer.bigcommerce.com/api#api-status-codes",
    "errors": {}
}

Upvotes: 1

Views: 785

Answers (1)

T.J.
T.J.

Reputation: 415

You are not able to make a request since you have not listed a resource endpoint. Have a look at the BigCommerce documentation for making your first request and that should get you started.

Upvotes: 2

Related Questions