Using Our Actions

Using our API abstractions is extremely simple. Just include the accountToken you received from the following the Link flow in the X-Account-Token header of your requests.

Example

This is an example request to get recent orders from an Amazon Business account:

GET
/v1/amazon-business/orders
1import requests
2
3url = "https://api.trykeet.com/v1/amazon-business/orders"
4
5headers = {
6 "X-Account-Token": "X-Account-Token",
7 "Authorization": "Bearer <token>"
8}
9
10response = requests.get(url, headers=headers)
11
12print(response.json())

Check out more of our built in abstractions