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