| title | List all customer property values |
|---|---|
| description | List all customer property values via Plane API. HTTP request format, parameters, scopes, and example responses for list all customer property values. |
| keywords | plane, plane api, rest api, api integration, customer, list all customer property values |
GET
/api/v1/workspaces/{workspace_slug}/customers/{customer_id}/property-values/
Retrieve all property values for a specific customer.
The unique identifier of the customer.
The workspace_slug represents the unique workspace identifier for a workspace in Plane. It can be found in the URL. For example, in the URL https://app.plane.so/my-team/projects/, the workspace slug is my-team.
curl -X GET \
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/customer-uuid/property-values/" \
-H "X-API-Key: $PLANE_API_KEY" \
# Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN"import requests
response = requests.get(
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/customer-uuid/property-values/",
headers={"X-API-Key": "your-api-key"}
)
print(response.json())const response = await fetch(
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/customer-uuid/property-values/",
{
method: "GET",
headers: {
"X-API-Key": "your-api-key",
},
}
);
const data = await response.json();{
"detail": "Customer property values retrieved successfully"
}