Retrieve a customer property value
GET/api/v1/workspaces/{slug}/customers/{customer_id}/property-values/{property_id}/
Retrieve values for a specific property of a customer.
Path Parameters
customer_id:requiredstringCustomer id.
property_id:requiredstringProperty id.
slug:requiredstringSlug.
Scopes
customers.property_values:read
Retrieve a customer property value
bash
curl -X GET \
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/550e8400-e29b-41d4-a716-446655440001/property-values/550e8400-e29b-41d4-a716-446655440001/" \
-H "X-API-Key: $PLANE_API_KEY"python
import requests
response = requests.get(
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/550e8400-e29b-41d4-a716-446655440001/property-values/550e8400-e29b-41d4-a716-446655440001/",
headers={"X-API-Key": "your-api-key"}
)
print(response.json())javascript
const response = await fetch(
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/550e8400-e29b-41d4-a716-446655440001/property-values/550e8400-e29b-41d4-a716-446655440001/",
{
method: "GET",
headers: {
"X-API-Key": "your-api-key",
},
}
);
const data = await response.json();Response200
json
{
"detail": "Property values retrieved successfully"
}
