Auth
About the Auth API
The EverTransit Auth API allows you to get the info about the fleet to which the API key used belongs. To make your requests, you can use the endpoint and method listed below.
Endpoints
The Fleet object
{
"id": "507f191e810c19729de860jk",
"name": "My Fleet"
}
Attributes
Name
Type
Description
id
string
A unique identifier of the fleet to which the API key belongs.
name
string
The name of the fleet to which the API key belongs.
Retrieve a fleet
Retrieves the information of the fleet to which the API key used belongs.
Authorizations
Responses
200
The fleet was retrieved successfully.
application/json
401
Unauthorized.
application/json
get
GET /v2beta/auth/me HTTP/1.1
Host: endpoints.evertransit.com
Accept: */*
{
"id": "507f191e810c19729de860jk",
"name": "My Fleet"
}
Last updated
Was this helpful?