List all support tickets that the authorization token has access to.
Access control:
- User-scoped tokens: Returns only tickets belonging to that user
- Organization-scoped tokens: Returns only tickets belonging to users in that organization
- Tokens with access_all_areas: Returns all tickets including those without a user
Note: Tickets without a user (null user field) are only accessible to applications with access_all_areas permission. These tickets represent inquiries from channels where a user account may not exist (e.g., pre-signup inquiries, web forms).
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/support_tickets
- Live API for both production and sandbox requests.https://api.ev.energy/v2/support_tickets
- Staging server for internal testing only.https://api-staging.ev.energy/v2/support_tickets
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/support_tickets?page_before=xmpl01HNFZM7Q8FXASZXYZ6XM3TQRR&page_after=xmpl01HNFZM7Q8FXASZXYZ6XM3TQRR&page_size=10&expand=user&external_ticket_id=string&human_verified_category=string&human_verified_subcategory=string&ai_generated_category=string&ai_generated_subcategory=string&human_verified_category__isnull=true&human_verified_subcategory__isnull=true&ai_generated_category__isnull=true&ai_generated_subcategory__isnull=true&status=string&status__in=string&priority=string&priority__in=string&priority__isnull=true&created_at__gte=2019-08-24T14%3A15%3A22Z&created_at__lte=2019-08-24T14%3A15%3A22Z&created_at__range=string&user=http%3A%2F%2Fexample.com&user__isnull=true&tags=string&source=string&source__in=string&resolved_at__gte=2019-08-24T14%3A15%3A22Z&resolved_at__lte=2019-08-24T14%3A15%3A22Z&resolved_at__range=string&resolved_at__isnull=true&ticket_updated_at__gte=2019-08-24T14%3A15%3A22Z&ticket_updated_at__lte=2019-08-24T14%3A15%3A22Z&ticket_updated_at__range=string&ticket_updated_at__isnull=true' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-User: user01HN2NJ9NMRZBXT1H6FT9N7735' \
-H 'EvEnergy-Version: 2'Returns a list of support tickets.
Provides links to the previous and next pages of data, if they exist.
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
The number of requests remaining until this client's rate limit is reached.
Unique identifier for the given support ticket.
Reference to the user who created the ticket. Can be null for tickets created through channels where a user account may not exist (e.g., pre-signup inquiries, web forms).
Access control:
- Tickets with a user are accessible based on user/organization permissions
- Tickets without a user (null) are only accessible to applications with access_all_areas permission
External ticket ID from Freshdesk or other support system.
The subject or title of the ticket.
Main category for a support ticket.
Subcategory for a support ticket.
Main category for a support ticket.
Subcategory for a support ticket.
Legacy ticket type (phased out for category/subcategory system).
Array of message URLs by default. When expanded with ?expand=messages, returns full message objects.
An AI generated summary of the conversation.
Additional custom fields from support system (e.g., car_manufacturer, mobile_app, legal_country, membership_level).
{ "car_manufacturer": "Tesla", "mobile_app": "iOS" }
Additional information about the user and their hardware.
{ "evse_model": "ChargePoint Home Flex" }
When the ticket was created in the support system.
When the ticket was last updated in the support system.
[ { "id": "tick01HN2NJ9NMRZBXT1H6FT9N7735", "url": "https://api.ev.energy/v2/support_tickets/tick01HN2NJ9NMRZBXT1H6FT9N7735", "user": "https://api.ev.energy/v2/users/user01HN2NJ9NMRZBXT1H6FT9N7735", "external_ticket_id": "12345", "subject": "Unable to connect my vehicle", "status": "Open", "priority": "Medium", "source": "Email", "human_verified_category": "ACCOUNT", "human_verified_subcategory": "ACCESSIBILITY", "ai_generated_category": "ACCOUNT", "ai_generated_subcategory": "ACCESSIBILITY", "type_deprecated": "Vehicle API error", "tags": [ … ], "messages": [ … ], "conversation_summary": "Customer experiencing issues with Tesla vehicle connection to mobile app.", "custom_fields": { … }, "attributes": { … }, "created_at": "2019-08-24T14:15:22Z", "ticket_updated_at": "2019-08-24T15:30:00Z", "resolved_at": "2019-08-25T10:00:00Z" } ]