List Workspace Properties
Retrieve all custom properties for the workspace associated with your API key.
Endpoint
GET https://api.campaignlark.com/v1/workspace/properties
Sample Request
GET https://api.campaignlark.com/v1/workspace/properties
Response
Success — 200 OK
{
"error": null,
"data": [
{
"id": 12,
"label": "Industry",
"merge_tag": "industry",
"value": "Technology"
}
]
}
Property Object
| Field | Type | Description |
|---|---|---|
id | integer | Unique property ID. |
label | string | Human-readable property label. |
merge_tag | string | Property merge tag used in messages. |
value | string | Current property value. |