FetchApp API

Downloads

GET a list of your downloads... /api/v3/downloads /api/v3/downloads?page=2 Example result... { "downloads": [ { "downloaded_at": "2021-09-12T12:34:55Z", "filename": "myfile.txt", "id": 123, "ip_address": "127.0.0.1", "item_sku": "BILL-WAX", "order_id": 1002, "size_bytes": 314559 } ]...

Downloads

GET a list of your downloads... /api/v3/downloads /api/v3/downloads?page=2 Example result... { "downloads": [ { "downloaded_at": "2021-09-12T12:34:55Z", "filename": "myfile.txt", "id": 123, "ip_address": "127.0.0.1", "item_sku": "BILL-WAX", "order_id": 1002, "size_bytes": 314559 } ]...

Account

GET information about your account... /api/v3/account Example result... { "account": { "billing_email": "billing@example.com", "created_at": "2021-09-12T12:34:55Z", "currency": "USD", "email": "support@example.com", "first_name": "John", "id": 123, "last_name": "Doe", "name": "My Company", "updated_at": "2021-09-13T10:11:12Z",...

Account

GET information about your account... /api/v3/account Example result... { "account": { "billing_email": "billing@example.com", "created_at": "2021-09-12T12:34:55Z", "currency": "USD", "email": "support@example.com", "first_name": "John", "id": 123, "last_name": "Doe", "name": "My Company", "updated_at": "2021-09-13T10:11:12Z",...

Connectivity

GET the time to test connectivity... GET /api/v2/time /api/v2/time.xml Example result... <?xml version="1.0" encoding="UTF-8"?> <time>2013-06-13T10:29:55-05:00</time>  

Connectivity

GET the time to test connectivity... GET /api/v2/time /api/v2/time.xml Example result... <?xml version="1.0" encoding="UTF-8"?> <time>2013-06-13T10:29:55-05:00</time>  

Authentication

All requests require basic authentication. To make a proper request, you must set the authorization header of your request and supply the generated string. The string is your personal key...

Authentication

All requests require basic authentication. To make a proper request, you must set the authorization header of your request and supply the generated string. The string is your personal key...

FetchApp API Intro

The FetchApp API is implemented as RESTful (using all four verbs GET/POST/PUT/DELETE) over HTTP.  URIs are given with the RESTful option first, followed by alternative paths. Every resource, like orders...

FetchApp API Intro

The FetchApp API is implemented as RESTful (using all four verbs GET/POST/PUT/DELETE) over HTTP.  URIs are given with the RESTful option first, followed by alternative paths. Every resource, like orders...