URL Scheme Format

timelined://[action]?[parameters]

Available Actions

Create Event

timelined://create?[parameters]

Open Event

timelined://open?uuid=[event-uuid]

Parameters

ParameterTypeDescriptionExample
titleStringEvent titletitle=My Event
subtitleStringEvent subtitle/taglinesubtitle=Important milestone
descriptionStringEvent descriptiondescription=Detailed description
dateStringStart date (see date formats above)date=2024-01-15
endDateStringEnd date (see date formats above)endDate=2024-01-16
categoryStringCategory namecategory=Work
typeStringEvent type nametype=Meeting
locationStringLocation addresslocation=New York, NY
peopleStringComma-separated people namespeople=John Doe,Jane Smith
tagsStringComma-separated tag namestags=important,urgent
editBooleanShow form for editing (true/false)edit=true
callbackURLCallback URL for resultscallback=myapp://result

URL Examples

Simple Event Creation

timelined://create?title=Team Meeting&date=2024-01-15T14:30:00Z&category=Work&type=Meeting

Event with Multiple Parameters

timelined://create?title=Project Launch&subtitle=Major milestone&description=Successfully launched our new product&date=2024-01-15&endDate=2024-01-16&category=Work&type=Milestone&location=San Francisco, CA&people=John Doe,Jane Smith&tags=important,success

Event with Year-Only Precision

timelined://create?title=Company Founded&date=1995&category=Business&type=Foundation

Event with Month-Only Precision

timelined://create?title=Product Development Started&date=2023-06&category=Development&type=Project

Open Existing Event

timelined://open?uuid=123e4567-e89b-12d3-a456-426614174000

Callback Support

When using the callback parameter, Timelined will open the callback URL with result information:

[callback-url]?success=true&uuid=[event-uuid]&message=[result-message]

Callback Parameters

  

ParameterTypeDescription
successBooleanWhether the operation was successful
uuidStringUUID of the created/opened event
messageStringHuman-readable result message

Callback Example

myapp://result?success=true&uuid=123e4567-e89b-12d3-a456-426614174000&message=Event created successfully