Update 'README.md'

This commit is contained in:
brajkovic 2023-08-25 06:07:35 +00:00
parent 4c45d00989
commit 99c5e5cd13
1 changed files with 99 additions and 95 deletions

View File

@ -55,7 +55,8 @@ That endpoint accepts a list of required and optional parameters
By default, responses are returned as a json array By default, responses are returned as a json array
``` ```
[{ {
holidays: [{
id: string; id: string;
date: string(ISO 8601); date: string(ISO 8601);
name: string; name: string;
@ -63,10 +64,12 @@ By default, responses are returned as a json array
isStateHoliday: boolean; isStateHoliday: boolean;
isReligiousHoliday: boolean; isReligiousHoliday: boolean;
},...] },...]
}
``` ```
eg. eg.
``` ```
[{ {
"holidays": [{
"id": "74a2a769-abf2-45d4-bdc4-442bbcc89138", "id": "74a2a769-abf2-45d4-bdc4-442bbcc89138",
"date": "2023-12-25", "date": "2023-12-25",
"name": "Christmas", "name": "Christmas",
@ -74,6 +77,7 @@ eg.
"isStateHoliday": true, "isStateHoliday": true,
"isReligiousHoliday": true "isReligiousHoliday": true
}] }]
}
``` ```
But can be returned as XML or CSV by setting appropriate `Accept` header (application/xml, text/xml or text/csv) But can be returned as XML or CSV by setting appropriate `Accept` header (application/xml, text/xml or text/csv)