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

Body

application/json
renewals
CreateRenewalRequest · object[]
required

Response

Successful Response

renewals
RenewalResponse · object[]
required
total
integer
required