Skip to main content
POST
/
api
/
personal
/
equipment
Create Equipment Endpoint
curl --request POST \
  --url https://api.example.com/api/personal/equipment \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "category": "<string>",
  "insured_value": 123,
  "insurer": "<string>",
  "notes": "<string>",
  "policy_number": "<string>",
  "renewal_date": "<string>",
  "status": "active"
}
'
{
  "created_at": "<string>",
  "id": "<string>",
  "name": "<string>",
  "status": "active",
  "updated_at": "<string>",
  "category": "<string>",
  "insured_value": 123,
  "insurer": "<string>",
  "notes": "<string>",
  "policy_number": "<string>",
  "renewal_date": "<string>"
}

Body

application/json
name
string
required
category
string | null
insured_value
integer | null
insurer
string | null
notes
string | null
policy_number
string | null
renewal_date
string | null
status
enum<string>
default:active
Available options:
active,
sold,
lost,
claimed

Response

Successful Response

created_at
string
required
id
string
required
name
string
required
status
enum<string>
required
Available options:
active,
sold,
lost,
claimed
updated_at
string
required
category
string | null
insured_value
integer | null
insurer
string | null
notes
string | null
policy_number
string | null
renewal_date
string | null