Skip to main content
GET
/
v1
/
events
/
{id}
cURL
curl --request GET \
  --url https://api.novacal.io/v1/events/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 123,
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z",
    "location": "<string>",
    "status": "<string>",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<int64>
required

ID of event

Response

200 - application/json

Event response

success
boolean
required

Indicates whether the request was successful

Example:

true

data
object
required