Skip to content

Blocked Customers

List customers currently blocked from the customer portal (up to 200, newest block first).

GET /v1/portal/blocked-customers

Response

json
{
  "data": [
    {
      "id": "cus_xxx",
      "email": "[email protected]",
      "firstName": "John",
      "lastName": "Doe",
      "company": null,
      "portalBlockedAt": "2026-06-10T12:00:00Z"
    }
  ]
}

Example

bash
curl -X GET "https://api.packedge.dev/v1/portal/blocked-customers" \
  -H "Authorization: Bearer pk_your_api_key"