Adds a new life event to the authenticated user's profile.
Input
Encoding
application/jsondescription
string
Optional
No description available.
endDate
stringdatetime
Optional
An RFC 3339 formatted timestamp.
startDate
stringdatetime
Required
An RFC 3339 formatted timestamp.
title
string
Required
No description available.
Output
Encoding
application/jsonuri
stringat-uri
Required
AT URI of the created event record.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"title",
"startDate"
],
"properties": {
"title": {
"type": "string"
},
"endDate": {
"type": "string",
"format": "datetime"
},
"startDate": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the created event record."
}
}
},
"encoding": "application/json"
},
"description": "Adds a new life event to the authenticated user's profile."
}