dateformats = 0 の場合は、米国
{
"layouts": "blank",
"query": [
{
"日付": "03/01/2024"
}
],
"dateformats": 0 <- 米国
}
{
"response": {
"dataInfo": {
"database": "blank",
"layout": "blank",
"table": "blank",
"totalRecordCount": 1,
"foundCount": 1,
"returnedCount": 1
},
"data": [
{
"fieldData": {
"タイムスタンプ": "03/01/2024 09:10:20", <- 米国
"日付": "03/01/2024" <- 米国
},
"portalData": {},
"recordId": "1",
"modId": "4"
}
]
},
"messages": [
{
"code": "0",
"message": "OK"
}
]
}
dateformats = 1 の場合は、ファイルロケール
{
"layouts": "blank",
"query": [
{
"日付": "03/01/2024"
}
],
"dateformats": 1 <- ファイルロケール
}
{
"response": {
"dataInfo": {
"database": "blank",
"layout": "blank",
"table": "blank",
"totalRecordCount": 1,
"foundCount": 1,
"returnedCount": 1
},
"data": [
{
"fieldData": {
"タイムスタンプ": "2024/03/01 09:10:20", <- ファイルロケール
"日付": "2024/03/01" <- ファイルロケール
},
"portalData": {},
"recordId": "1",
"modId": "4"
}
]
},
"messages": [
{
"code": "0",
"message": "OK"
}
]
}
dateformats = 2 の場合は、ISO8601
{
"layouts": "blank",
"query": [
{
"日付": "03/01/2024"
}
],
"dateformats": 2 <- ISO8601
}
{
"response": {
"dataInfo": {
"database": "blank",
"layout": "blank",
"table": "blank",
"totalRecordCount": 1,
"foundCount": 1,
"returnedCount": 1
},
"data": [
{
"fieldData": {
"タイムスタンプ": "2024-03-01T09:10:20", <- ISO8601
"日付": "2024-03-01" <- ISO8601
},
"portalData": {},
"recordId": "1",
"modId": "4"
}
]
},
"messages": [
{
"code": "0",
"message": "OK"
}
]
}