Read CSM Runs
- method: GET
- headers:
- content-type: application/json
- authorization: API Key token
- endpoint:
/csm/lrc
request body payload
N/A
sample request
curl curl --location 'https://api.i17.actserv-africa.com/api/v2//csm/lrc' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer API-KEY-goes-here' \
--data ''
response payload
code: http status of the responsemsg: messageruns_details: an object containing an organization's runs details
sample response
{
"code": 200,
"msg": "success",
"runs_details": {
"run_id": [
"csm__20241015____run-1-id",
"csm__20241024____run-2-id",
"csm__20241106____run-3-id"
],
"run_name": [
"XYZ :: test :: 2024-10-15",
"XYZ :: test :: 2024-10-24",
"XYZ :: test :: 2024-11-06"
],
"created_by": [
"johndoe@mail.com",
"keyauthor@mail.com",
"apikeyauthor@mail.com"
],
"date_and_time": [
"2024-10-15 11:27:15 UTC",
"2024-10-24 08:23:03 UTC",
"2024-11-06 08:59:02 UTC"
]
}
}