/api/v1/ops/operations/intelligence-refreshes
POST
/api/v1/ops/operations/intelligence-refreshes
const url = 'https://example.com/api/v1/ops/operations/intelligence-refreshes';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"matchId":1}'};
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/v1/ops/operations/intelligence-refreshes \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "matchId": 1 }'Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ”object
matchId
integer format: int32
Example generated
{ "matchId": 1}object
matchId
integer format: int32
Example generated
{ "matchId": 1}object
matchId
integer format: int32
Example generated
{ "matchId": 1}Responses
Section titled “ Responses ”OK