# Zendesk Integration via LowCodeAPI

## Overview

Customer service software

## Base Endpoint

```
https://api.lowcodeapi.com/zendesk/
```

## Authentication

LowCodeAPI handles authentication automatically. You only need to:

1. **Sign up** at [Zendesk](https://zendesk.com)
3. **Connect your account** in LowCodeAPI dashboard
4. **Use your `api_token`** in all requests

**Auth Type**: TOKEN

## API Categories

- **Tickets** - 1 endpoints
- **Users** - 1 endpoints

## Common Endpoints

### Category: Tickets

#### Show Ticket

**Method**: `GET` | **LowCodeAPI Path**: `/api/v2/tickets/ticket_id`

**Full URL**:
```
https://api.lowcodeapi.com/zendesk/api/v2/tickets/ticket_id?api_token={api_token}
```

**Description**: https://developer.zendesk.com/api-reference/ticketing/tickets/tickets/#show-ticket

**Path Parameters**:

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
|`ticket_id` | number | Yes | The ID of the ticket |

---

### Category: Users

#### List Users

**Method**: `GET` | **LowCodeAPI Path**: `/api/v2/users`

**Full URL**:
```
https://api.lowcodeapi.com/zendesk/api/v2/users?api_token={api_token}
```

**Description**: https://developer.zendesk.com/api-reference/ticketing/users/users/#list-users

---

## Complete Endpoint Reference

For a complete list of all 2 endpoints, refer to:
- **OpenAPI Definition**: `https://backend.lowcodeapi.com/zendesk/definition`
- **Official Provider Documentation**: https://developer.zendesk.com/documentation