Clean room
List all Clean rooms
GET
https://api.mediarithmics.com/v1/clean_rooms?organisation_id=:organisation_id
Query string Parameters
Name
Type
Description
organisation_id
number
ID of the organisation for which the clean rooms will be listed
Response
{
"status": "ok",
"data": [
{
"clean_room_id": "22",
"organisation_id": "1863",
"name": "Activation Clean room",
"clean_room_organisations": [
{
"clean_room_id": "22",
"organisation_id": "1863",
"organisation_name": "AV Sub 1.2",
"owner": true,
"status": "ACCEPTED",
"created_by": null,
"created_ts": 1734538881966,
"last_modified_by": null,
"last_modified_ts": null,
"archived": false,
"archived_by": null,
"archived_ts": null,
"purposes": [
"ACTIVATION"
]
},
{
"clean_room_id": "22",
"organisation_id": "1752",
"organisation_name": "AV Sub 2.4",
"owner": false,
"status": "ACCEPTED",
"created_by": null,
"created_ts": 1734538881974,
"last_modified_by": null,
"last_modified_ts": null,
"archived": false,
"archived_by": null,
"archived_ts": null,
"purposes": [
"ACTIVATION"
]
}
]
},
{
"clean_room_id": "21",
"organisation_id": "1581",
"name": "All purposes Clean room",
"clean_room_organisations": [
{
"clean_room_id": "21",
"organisation_id": "1863",
"organisation_name": "AV Sub 1.2",
"owner": true,
"status": "ACCEPTED",
"created_by": null,
"created_ts": 1734444429859,
"last_modified_by": null,
"last_modified_ts": null,
"archived": false,
"archived_by": null,
"archived_ts": null,
"purposes": [
"INSIGHTS",
"ACTIVATION"
]
},
{
"clean_room_id": "21",
"organisation_id": "1752",
"organisation_name": "AV Sub 2.4",
"owner": false,
"status": "ACCEPTED",
"created_by": null,
"created_ts": 1734444429868,
"last_modified_by": null,
"last_modified_ts": null,
"archived": false,
"archived_by": null,
"archived_ts": null,
"purposes": [
"INSIGHTS",
"ACTIVATION"
]
}
]
}
],
"count": 2,
"total": 2,
"first_result": 0,
"max_results": 2147483647
}
Get a Clean room
GET
https://api.mediarithmics.com/v1/clean_rooms/:clean_room_id
Query string Parameters
Name
Type
Description
clean_room_id
number
ID of the clean room to retrieve
Response
{
"status": "ok",
"data": {
"clean_room_id": "21",
"organisation_id": "1581",
"name": "All purposes Clean room",
"clean_room_organisations": [
{
"clean_room_id": "21",
"organisation_id": "1863",
"organisation_name": "AV Sub 1.2",
"owner": true,
"status": "ACCEPTED",
"created_by": null,
"created_ts": 1734444429859,
"last_modified_by": null,
"last_modified_ts": null,
"archived": false,
"archived_by": null,
"archived_ts": null,
"purposes": [
"INSIGHTS",
"ACTIVATION"
]
},
{
"clean_room_id": "21",
"organisation_id": "1752",
"organisation_name": "AV Sub 2.4",
"owner": false,
"status": "ACCEPTED",
"created_by": null,
"created_ts": 1734444429868,
"last_modified_by": null,
"last_modified_ts": null,
"archived": false,
"archived_by": null,
"archived_ts": null,
"purposes": [
"INSIGHTS",
"ACTIVATION"
]
}
]
}
}
```
Last updated
Was this helpful?