Accounting Export Reports that can be consumed by 3rd Party accounting systems
curl -i -X GET \ 'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/accounting/{storeId}/{date}/returnToVendors' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "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": [ { … } ] }
curl -i -X GET \ 'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/accounting/{storeId}/{date}/invoices?includeReceipts=false&nonPrepaidOnly=false' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "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": [ { … } ] }
curl -i -X GET \ 'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/accounting/{storeId}/{date}/revenue?types=string' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "date": "2019-08-24T14:15:22Z", "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string" }, "lines": [ { … } ] }
curl -i -X GET \ 'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/accounting/{storeId}/{date}/journalEntry?types=string' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "date": "2019-08-24T14:15:22Z", "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "description": "string", "accountingId": "string" }, "lines": [ { … } ] }
curl -i -X GET \ 'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/accounting/{storeId}/codes/{codeType}' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "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" } }