Fetch API (v3.0: 3.25.0.4)
For differences between versions, see Changelog.
Overview
API Support Group
Languages
Servers
Production server
https://fetch.yellowdogsoftware.com/api/v3/
- Production server
https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/{date}/returnToVendors
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/2020-05-24/returnToVendors' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "docNumber": "string", "date": "2019-08-24T14:15:22Z", "paid": true, "prepaid": true, "paymentDue": "2019-08-24T14:15:22Z", "billed": "2019-08-24T14:15:22Z", "committed": "2019-08-24T14:15:22Z", "created": "2019-08-24T14:15:22Z", "lastUpdated": "2019-08-24T14:15:22Z", "reference": "string", "description": "string", "instructions": "string", "notes": "string", "totalAmount": 0.1, "currencyCode": "string", "committedByUser": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "employeeNumber": "string", "firstName": "string", "middleName": "string", "lastName": "string" }, "createdByUser": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "employeeNumber": "string", "firstName": "string", "middleName": "string", "lastName": "string" }, "vendor": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string", "reference": "string" }, "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string" }, "lines": [ { … } ] }
- Production server
https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/{date}/invoices
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/2020-05-24/invoices?nonPrepaidOnly=false&includeReceipts=false' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "docNumber": "string", "date": "2019-08-24T14:15:22Z", "paid": true, "prepaid": true, "paymentDue": "2019-08-24T14:15:22Z", "billed": "2019-08-24T14:15:22Z", "committed": "2019-08-24T14:15:22Z", "created": "2019-08-24T14:15:22Z", "lastUpdated": "2019-08-24T14:15:22Z", "reference": "string", "description": "string", "instructions": "string", "notes": "string", "totalAmount": 0.1, "currencyCode": "string", "committedByUser": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "employeeNumber": "string", "firstName": "string", "middleName": "string", "lastName": "string" }, "createdByUser": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "employeeNumber": "string", "firstName": "string", "middleName": "string", "lastName": "string" }, "vendor": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string", "reference": "string" }, "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string" }, "lines": [ { … } ] }
- Production server
https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/{date}/revenue
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/2020-05-24/revenue?types=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "date": "2019-08-24T14:15:22Z", "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string" }, "lines": [ { … } ] }
- Production server
https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/{date}/journalEntry
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/2020-05-24/journalEntry?types=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "date": "2019-08-24T14:15:22Z", "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string" }, "lines": [ { … } ] }
- Production server
https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/codes/{codeType}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/accounting/{storeId}/codes/ManualAdjust' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "description": "string", "type": "string", "placement": 0, "store": { "accountGLCode": "string", "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string" } }