A connector is a hardware device that enables you to communicate with a vehicle of the customer. A customer's connector is also known as a 'remote'.
id | string <uuid> Connector identifier. | ||||||
customer_id | string or null <uuid> Reference to customer to which the connector is assigned. | ||||||
hardware_version | string A connector's hardware version. | ||||||
name | string Human-readable connector identifier. | ||||||
pin | string or null = 5 characters ^\d{5}$ A connector's pin code. | ||||||
software_version | string A connector's software version. | ||||||
type | string The type of connector.
|
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "hardware_version": "11",
- "name": "1005123",
- "pin": "01234",
- "software_version": "8756",
- "type": "virtual"
}
Retrieve a list of connectors.
Successful response.
object >= 0 properties Applied query parameters, including defaults. | |||||||||||||||||||||
Array of objects (Connector) >= 0 items List of connectors. | |||||||||||||||||||||
Array (>= 0 items)
| |||||||||||||||||||||
total | integer <int64> Total number of resources matching provided query parameters. |
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "hardware_version": "11",
- "name": "1005123",
- "pin": "01234",
- "software_version": "8756",
- "type": "virtual"
}
], - "total": 3255
}
Retrieve a single connector by its identifier.
Successful response.
id | string <uuid> Connector identifier. | ||||||
customer_id | string or null <uuid> Reference to customer to which the connector is assigned. | ||||||
hardware_version | string A connector's hardware version. | ||||||
name | string Human-readable connector identifier. | ||||||
pin | string or null = 5 characters ^\d{5}$ A connector's pin code. | ||||||
software_version | string A connector's software version. | ||||||
type | string The type of connector.
|
An error occurred - see status code and problem response for more information.
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "hardware_version": "11",
- "name": "1005123",
- "pin": "01234",
- "software_version": "8756",
- "type": "virtual"
}
Update connector settings.
Successful response.
id | string <uuid> Connector identifier. | ||||||
customer_id | string or null <uuid> Reference to customer to which the connector is assigned. | ||||||
hardware_version | string A connector's hardware version. | ||||||
name | string Human-readable connector identifier. | ||||||
pin | string or null = 5 characters ^\d{5}$ A connector's pin code. | ||||||
software_version | string A connector's software version. | ||||||
type | string The type of connector.
|
An error occurred - see status code and problem response for more information.
{- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e"
}
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
- "hardware_version": "11",
- "name": "1005123",
- "pin": "01234",
- "software_version": "8756",
- "type": "virtual"
}