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/currency
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/currency?Filter=string&OrderBy=string&PageNumber=0&PageSize=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "currencyCode": "string", "date": "2019-08-24T14:15:22Z", "exchangeRate": 0.1, "lastUpdated": "2019-08-24T14:15:22Z" } ]
- Production server
https://fetch.yellowdogsoftware.com/api/v3/currency
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://fetch.yellowdogsoftware.com/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
}
]'
- Production server
https://fetch.yellowdogsoftware.com/api/v3/currency
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://fetch.yellowdogsoftware.com/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
}
]'
BodyArray []
- application/json-patch+json
- application/json
- text/json
- application/*+json
List of Currency IDs to be deleted
string(uuid)
- Production server
https://fetch.yellowdogsoftware.com/api/v3/currency
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://fetch.yellowdogsoftware.com/api/v3/currency \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '[
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
]'
- Production server
https://fetch.yellowdogsoftware.com/api/v3/currency/effectiveExchangeRate/{currencyCode}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/currency/effectiveExchangeRate/{currencyCode}?date=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
- Production server
https://fetch.yellowdogsoftware.com/api/v3/currency/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://fetch.yellowdogsoftware.com/api/v3/currency/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "currencyCode": "string", "date": "2019-08-24T14:15:22Z", "exchangeRate": 0.1, "lastUpdated": "2019-08-24T14:15:22Z" }
- Production server
https://fetch.yellowdogsoftware.com/api/v3/currency/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://fetch.yellowdogsoftware.com/api/v3/currency/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'