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/thirdPartySessions?Filter=string&OrderBy=string&PageNumber=0&PageSize=0' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>'
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "source": "string", "description": "string", "dateTime": "2019-08-24T14:15:22Z", "store": { … }, "lines": [ … ], "createdByUser": { … } } ]
curl -i -X POST \ 'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/thirdPartySessions?suppressOutput=true' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>' \ -H 'Content-Type: application/json-patch+json' \ -d '[ { "code": "string", "source": "string", "description": "string", "dateTime": "2019-08-24T14:15:22Z", "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "name": "string" }, "lines": [ { "flag": "string", "device": "string", "dateTime": "2019-08-24T14:15:22Z", "item": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "upc": "string", "sku": "string", "description": "string", "category": "string", "subCategory": "string", "retail": 0, "unit": "string", "manufacturer": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "sku": "string", "name": "string", "cost": 0 }, "vendor": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "sku": "string", "name": "string", "cost": 0 } }, "counted": 0.1, "countedWeight": { "value": 0, "unit": "string" }, "countedVolume": { "value": 0, "unit": "string" }, "fullWeight": { "value": 0, "unit": "string" }, "tareWeight": { "value": 0, "unit": "string" } } ] } ]'
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "source": "string", "description": "string", "dateTime": "2019-08-24T14:15:22Z", "store": { … }, "lines": [ … ], "createdByUser": { … } } ]
curl -i -X GET \ 'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/thirdPartySessions/{id}' \ -H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "source": "string", "description": "string", "dateTime": "2019-08-24T14:15:22Z", "store": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "code": "string", "name": "string" }, "lines": [ { … } ], "createdByUser": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" } }