Read Disclosures Runs
retrieve organization's disclosure runs.
- method: GET
- headers:
- authorization: API Key token
- endpoint:
/disclosures
request body payload
N/A
sample request
curl --location --request GET 'https://api.i17.actserv-africa.com/api/v2/disclosures' \
--header 'Authorization: Bearer API-KEY-goes-here' \
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": [
"test__20241015____run-1-id",
"test__20241024____run-2-id",
"production__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"
]
}
}