You can get a list of all the era effects of a timeline by using the following endpoint.
{warning} Don't forget that all endpoints documented here need to be prefixed with
1.0/campaigns/{campaign.id}/
.
Method | URI | Headers |
---|---|---|
GET/HEAD | timelines/{timeline.id}/timeline_eras |
Default |
{
"data": [
{
"id": 1,
"timeline_id": 1,
"name": "Anno Domani",
"abbreviation": "AD",
"start_year": null,
"end_year": 0,
"visibility": "all",
"elements": [],,
"created_by": 1,
"created_at": "2020-08-05 14:32:59",
"updated_at": "2020-08-05 14:33:22"
}
],
"links": {
"first": "https://api.kanka.io/1.0/campaigns/1/timelines/1/timeline_eras?page=1",
"last": "https://api.kanka.io/1.0/campaigns/1/timelines/1/timeline_eras?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "https://api.kanka.io/1.0/campaigns/1/timelines/1/timeline_eras",
"per_page": 15,
"to": 1,
"total": 1
}
}
To get the details of a single era effect, use the following endpoint.
Method | URI | Headers |
---|---|---|
GET/HEAD | timelines/{timeline.id}/timeline_eras/{timeline_era.id} |
Default |
{
"data": {
"id": 26,
"name": "Third era",
"abbreviation": null,
"start_year": null,
"entry": "<p>Lorem ipsum dolor sit amet</p>",
"entry_parsed": "<p>Lorem ipsum dolor sit amet</p>",
"end_year": null,
"elements": [],
"is_collapsed": false,
"position": 2
}
}
To create a timeline era, use the following endpoint.
Method | URI | Headers |
---|---|---|
POST | timelines/{timeline.id}/timeline_eras |
Default |
Parameter | Type | Detail |
---|---|---|
era |
string (Required) |
Name of the era |
abbreviation |
string |
Abbreviation of the era |
start_year |
integer |
Year the era starts |
end_year |
integer |
Year the era ends |
visiblity |
string |
all , admin , self Who can view |
{success} Code 200 with JSON body of the new timeline era.
To update a timeline, use the following endpoint.
Method | URI | Headers |
---|---|---|
PUT/PATCH | timelines/{timeline.id}/timeline_eras/{timeline_era.id} |
Default |
The same body parameters are available as for when creating a timeline era.
{success} Code 200 with JSON body of the updated timeline era.
To delete a timeline era, use the following endpoint.
Method | URI | Headers |
---|---|---|
DELETE | timelines/{timeline.id}/timeline_eras/{timeline_era.id} |
Default |
{success} Code 200 with JSON.