/api/admin/trigger/scoring
POST
/api/admin/trigger/scoring
const url = 'https://example.com/api/admin/trigger/scoring';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"date":"2026-04-15T12:00:00Z"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/admin/trigger/scoring \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "date": "2026-04-15T12:00:00Z" }'Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ”object
date
string format: date-time
Example generated
{ "date": "2026-04-15T12:00:00Z"}object
date
string format: date-time
Example generated
{ "date": "2026-04-15T12:00:00Z"}object
date
string format: date-time
Example generated
{ "date": "2026-04-15T12:00:00Z"}Responses
Section titled “ Responses ”OK