List all customer work items
GET/api/v1/workspaces/{slug}/customers/{customer_id}/issues/
List all issues linked to a customer, with filtering by request
Path Parameters
customer_id:requiredstringCustomer id.
slug:requiredstringSlug.
Scopes
customers.work_items:read
List all customer work items
bash
curl -X GET \
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/550e8400-e29b-41d4-a716-446655440001/issues/" \
-H "X-API-Key: $PLANE_API_KEY" \
# Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN" \python
import requests
response = requests.get(
"https://api.plane.so/api/v1/workspaces/my-workspace/customers/550e8400-e29b-41d4-a716-446655440001/issues/",
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/issues/",
{
method: "GET",
headers: {
"X-API-Key": "your-api-key",
},
}
);
const data = await response.json();Response200
json
{
"detail": "Customer issues retrieved successfully"
}
