Accounting Export Reports that can be consumed by 3rd Party accounting systems
For differences between versions, see Changelog.
curl -i -X GET \
'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/currency?Filter=string&OrderBy=string&PageNumber=0&PageSize=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "currencyCode": "string", "date": "2019-08-24T14:15:22Z", "exchangeRate": 0.1, "lastUpdated": "2019-08-24T14:15:22Z" } ]
curl -i -X POST \
https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/currency \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '[
{
"currencyCode": "string",
"date": "2019-08-24T14:15:22Z",
"exchangeRate": 0.1
}
]'
curl -i -X PUT \
https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/currency \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"currencyCode": "string",
"date": "2019-08-24T14:15:22Z",
"exchangeRate": 0.1
}
]'
List of Currency IDs to be deleted
curl -i -X DELETE \
https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/currency \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '[
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
]'
curl -i -X GET \
'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/currency/effectiveExchangeRate/{currencyCode}?date=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
curl -i -X GET \
'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/currency/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "currencyCode": "string", "date": "2019-08-24T14:15:22Z", "exchangeRate": 0.1, "lastUpdated": "2019-08-24T14:15:22Z" }
curl -i -X DELETE \
'https://developer.yellowdogsoftware.com/_mock/fetch/api/api/v3/currency/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'