Skip to main content
POST
/
api
/
personal
/
renewals
Create Renewal Endpoint
curl --request POST \
  --url https://api.example.com/api/personal/renewals \
  --header 'Content-Type: application/json' \
  --data '
{
  "due_date": "<string>",
  "title": "<string>",
  "category": "other",
  "notes": "<string>",
  "recurrence": "monthly",
  "status": "active"
}
'
{
  "category": "insurance",
  "created_at": "<string>",
  "due_date": "<string>",
  "id": "<string>",
  "status": "active",
  "title": "<string>",
  "updated_at": "<string>",
  "notes": "<string>",
  "recurrence": "monthly"
}

Body

application/json
due_date
string
required
title
string
required
category
enum<string>
default:other
Available options:
insurance,
taxes,
subscriptions,
licenses,
documents,
other
notes
string | null
recurrence
enum<string> | null
Available options:
monthly,
quarterly,
yearly
status
enum<string>
default:active
Available options:
active,
completed,
snoozed

Response

Successful Response

category
enum<string>
required
Available options:
insurance,
taxes,
subscriptions,
licenses,
documents,
other
created_at
string
required
due_date
string
required
id
string
required
status
enum<string>
required
Available options:
active,
completed,
snoozed
title
string
required
updated_at
string
required
notes
string | null
recurrence
enum<string> | null
Available options:
monthly,
quarterly,
yearly