Skip to main content

Get Property

Retrieve a property by ID.

Endpoint

GET /properties/:id

Path Parameters

ParameterTypeDescription
idstringThe property ID

Response

See Create Property for the response shape.

{
"id": "01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a",
"field_key": "lifetime_value",
"display_name": "Lifetime Value",
"data_type": "number",
"description": null,
"fallback_value": "0",
"created_at": "2026-03-01T10:00:00.000Z",
"updated_at": "2026-03-08T12:00:00.000Z"
}

Examples

curl "https://api.arsel.sa/v1/properties/01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a" \
-H "Authorization: Bearer be_your_api_key"

Error Responses

{
"status_code": 404,
"name": "not_found",
"message": "Property with id \"...\" not found"
}