Create a device certificate
POST http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/certificates
Creates a private key, device certificate and sends response as a zip file.
Path Parameters
- project_id string required
Project ID
- fleet_id string required
Fleet ID
- device_id string required
Device ID
Responses
- 200
Success" "Returns a zip file with private key, device certificate and root ca certificate.
- application/json
- Schema
- Example (from schema)
Schema
{}
Request
Request
curl / cURL
curl -L -X POST 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/certificates' \
-H 'Accept: application/json'
python / requests
curl -L -X POST 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/certificates' \
-H 'Accept: application/json'
go / native
curl -L -X POST 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/certificates' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X POST 'http://localhost:8080/core/api/v1/api/v1/projects/:project_id/fleets/:fleet_id/devices/:device_id/certificates' \
-H 'Accept: application/json'