Create fleet account
Getting Started
- Introduction
- Account
- Fleet
- Driver
- Vehicle
- Vehicle Telemetry
- Charging Station
- Charging Session
- Transaction
- Invoice
- Report
- Reservation
- Payment Method
- Estimation
- Webhook
Create fleet account
Create a new fleet account
POST
/
fleet
/
accounts
/
create
curl --request POST \
--url https://api.chargeapi.com/v1/fleet/accounts/create \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"company_name": "<string>",
"admin_email": "jsmith@example.com",
"billing_address": {
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
},
"payment_method": {
"type": "credit_card",
"token": "<string>",
"billing_address": {
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
},
"vehicle_limit": 123
}'
Authorizations
Body
application/json
Available options:
credit_card
, bank_account
Maximum number of vehicles allowed
curl --request POST \
--url https://api.chargeapi.com/v1/fleet/accounts/create \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"company_name": "<string>",
"admin_email": "jsmith@example.com",
"billing_address": {
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
},
"payment_method": {
"type": "credit_card",
"token": "<string>",
"billing_address": {
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
},
"vehicle_limit": 123
}'