# \ChannelEndpointsApi
All URIs are relative to *https://api.enbbox.com*
[**create_endpoint**](ChannelEndpointsApi.md#create_endpoint) | **POST** /v1/channel-endpoints/ | POST /v1/channel-endpoints
[**delete_endpoint**](ChannelEndpointsApi.md#delete_endpoint) | **DELETE** /v1/channel-endpoints/{id}/ | DELETE /v1/channel-endpoints/:identifier
[**get_endpoint**](ChannelEndpointsApi.md#get_endpoint) | **GET** /v1/channel-endpoints/{id}/ | GET /v1/channel-endpoints/:identifier
[**list_endpoints**](ChannelEndpointsApi.md#list_endpoints) | **GET** /v1/channel-endpoints/ | GET /v1/channel-endpoints
[**update_endpoint**](ChannelEndpointsApi.md#update_endpoint) | **PATCH** /v1/channel-endpoints/{id}/ | PATCH /v1/channel-endpoints/:identifier
## create_endpoint
> models::ChannelEndpointRecord create_endpoint(create_channel_endpoint)
POST /v1/channel-endpoints
### Parameters
**create_channel_endpoint** | [**CreateChannelEndpoint**](CreateChannelEndpoint.md) | | [required] |
### Return type
[**models::ChannelEndpointRecord**](ChannelEndpointRecord.md)
### Authorization
[bearer_auth](../README.md#bearer_auth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## delete_endpoint
> delete_endpoint(id)
DELETE /v1/channel-endpoints/:identifier
### Parameters
**id** | **String** | Channel endpoint ID | [required] |
### Return type
(empty response body)
### Authorization
[bearer_auth](../README.md#bearer_auth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: Not defined
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## get_endpoint
> models::ChannelEndpointRecord get_endpoint(id)
GET /v1/channel-endpoints/:identifier
### Parameters
**id** | **String** | Channel endpoint ID | [required] |
### Return type
[**models::ChannelEndpointRecord**](ChannelEndpointRecord.md)
### Authorization
[bearer_auth](../README.md#bearer_auth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## list_endpoints
> models::PaginatedChannelEndpointRecord list_endpoints(limit, offset, q, filter_by)
GET /v1/channel-endpoints
### Parameters
**limit** | Option<**u32**> | Maximum number of items to return (1–100, default: 10). | |
**offset** | Option<**u32**> | Number of items to skip before returning results (default: 0). | |
**q** | Option<**String**> | Optional full-text search query. When present, listing is powered by Typesense full-text search. | |
**filter_by** | Option<**String**> | Optional Typesense filter expression for narrowing results. Example: `identifier:=acme-corp` or `name:=General`. | |
### Return type
[**models::PaginatedChannelEndpointRecord**](Paginated_ChannelEndpointRecord.md)
### Authorization
[bearer_auth](../README.md#bearer_auth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## update_endpoint
> models::ChannelEndpointRecord update_endpoint(id, update_channel_endpoint)
PATCH /v1/channel-endpoints/:identifier
### Parameters
**id** | **String** | Channel endpoint ID | [required] |
**update_channel_endpoint** | [**UpdateChannelEndpoint**](UpdateChannelEndpoint.md) | | [required] |
### Return type
[**models::ChannelEndpointRecord**](ChannelEndpointRecord.md)
### Authorization
[bearer_auth](../README.md#bearer_auth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)