Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
securityId | yes | string | Security ID |
mondayHoursStart | no | string | specified time (EST) |
mondayHoursEnd | no | string | specified time (EST) |
mondayClosed | no | string | "yes" if the market is closed, null if hours are specified |
tuesdayHoursStart | no | string | specified time (EST) |
tuesdayHoursEnd | no | string | specified time (EST) |
tuesdayClosed | no | string | "yes" if the market is closed, null if hours are specified |
wednesdayHoursStart | no | string | specified time (EST) |
wednesdayHoursEnd | no | string | specified time (EST) |
wednesdayClosed | no | string | "yes" if the market is closed, null if hours are specified |
thursdayHoursStart | no | string | specified time (EST) |
thursdayHoursEnd | no | string | specified time (EST) |
thursdayClosed | no | string | "yes" if the market is closed, null if hours are specified |
fridayHoursStart | no | string | specified time (EST) |
fridayHoursEnd | no | string | specified time (EST) |
fridayClosed | no | string | "yes" if the market is closed, null if hours are specified |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateSecurityMarketHours
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d securityId=94216
-d mondayHoursStart=06:01
-d mondayHoursEnd=16:01
-d mondayClosed=no
-d tuesdayHoursStart=06:01
-d tuesdayHoursEnd=16:01
-d tuesdayClosed=no
-d wednesdayHoursStart=06:01
-d wednesdayHoursEnd=16:01
-d wednesdayClosed=no
-d thursdayHoursStart=06:01
-d thursdayHoursEnd=16:01
-d thursdayClosed=no
-d fridayHoursStart=06:01
-d fridayHoursEnd=16:01
-d fridayClosed=no
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
securityHoursDetails | string | Array of details of the hours for security ID |
{
"statusCode": "101",
"statusDesc": "Ok",
"securityHoursDetails": {
"securityId": "94216",
"mondayClosed": "No",
"mondayStartHours": "6",
"mondayStartMins": "1",
"mondayCloseHours": "23",
"mondayCloseMins": "59",
"tuesdayClosed": "No",
"tuesdayStartHours": "5",
"tuesdayStartMins": "15",
"tuesdayCloseHours": "23",
"tuesdayCloseMins": "59",
"wednesdayClosed": "No",
"wednesdayStartHours": "3",
"wednesdayStartMins": "0",
"wednesdayCloseHours": "23",
"wednesdayCloseMins": "59",
"thursdayClosed": "No",
"thursdayStartHours": "0",
"thursdayStartMins": "0",
"thursdayCloseHours": "23",
"thursdayCloseMins": "59",
"fridayClosed": "No",
"fridayStartHours": "0",
"fridayStartMins": "0",
"fridayCloseHours": "23",
"fridayCloseMins": "59"
}
}