Bunker

Create a Bunker

POST https://api.mediarithmics.com/v1/bunkers

Body parameters

Name
Type
Description

organisation_id

number

ID of the organisation in which to create the bunker

name

string

Name of the bunker

Response

{
    "status": "ok",
    "data": {
        "id": "3",
        "organisation_id": "1581",
        "name": "Data collab bunker",
        "created_by": "3594",
        "created_ts": 1716834629587,
        "last_modified_by": null,
        "last_modified_ts": null,
        "archived": false,
        "archived_by": null,
        "archived_ts": null
    }
}

List all Bunkers

GET https://api.mediarithmics.com/v1/bunkers?organisation_id=:organisation_id

Query string Parameters

Name
Type
Description

organisation_id

number

ID of the organisation for which the bunkers will be listed

Response

Get a Bunker

GET https://api.mediarithmics.com/v1/bunkers/:bunker_id

Path parameters

Name
Type
Description

bunker_id

number

ID of the bunker to retrieve

Response

Edit a Bunker

PUT https://api.mediarithmics.com/v1/bunkers/:bunker_id

Body parameters

Name
Type
Description

name

string

New name of the bunker

Response

Last updated

Was this helpful?