# List Available Resources

`GET /api/zapier/resources`

Returns a list of all available resources that can be used for polling and testing. This endpoint is used by automation platforms to discover available triggers.

- **Group:** Automation
- **Since:** v0.0.0
- **Authentication:** `authtoken` header, created under Setup > API > API Management
- **HTML version:** /apiguide/automation/list-resources/

## Headers

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `authtoken` | String | **required** | Authentication token, generated from admin area |
| `Authorization` | String | optional | Bearer token (alternative to authtoken header) |

## Example request

```bash
curl -X GET "https://yoursite.com/api/zapier/resources" \
  -H "authtoken: YOUR_API_TOKEN"
```

## Success response

### Success-Response:

```json
HTTP/1.1 200 OK
{
  "status": true,
  "data": [
    {
      "key": "customers",
      "label": "Customers",
      "description": "New or updated customers"
    },
    {
      "key": "invoices",
      "label": "Invoices",
      "description": "New or updated invoices"
    },
    {
      "key": "leads",
      "label": "Leads",
      "description": "New or updated leads"
    },
    {
      "key": "tasks",
      "label": "Tasks",
      "description": "New or updated tasks"
    },
    {
      "key": "tickets",
      "label": "Tickets",
      "description": "New or updated support tickets"
    }
  ]
}
```

---

Perfex CRM REST API by Themesic Interactive. Full reference: /apiguide/
