All URIs are relative to https://api.lab5e.com
Method | HTTP request | Description |
---|---|---|
create_certificate | POST /span/collections/{collectionId}/certificates/create | Create certificate |
retrieve_certificate_chain | GET /span/collections/{collectionId}/certificates | Get certificate chain |
sign_certificate | POST /span/collections/{collectionId}/certificates/sign | Sign certificate |
verify_certificate | POST /span/collections/{collectionId}/certificates/verify | Verify certificate |
crate::models::CreateCertificateResponse create_certificate(collection_id, body) Create certificate
Create a new device or gateway (client) certificate for an internet-connected device. The devices will use this client certificate to authenticate when sending data via the Internet endpoint. This will create a X509 client certificate with an ECC public key. The key is not stored by the service so keep it in a secure place once it is downloaded. The returned certificate will be valid for 14 days. The key for the certificate is your own responsibility. The client certificate is used in both the TLS, DTLS and gRPC service endpoints.
Name | Type | Description | Required | Notes |
---|---|---|---|---|
collection_id | String | [required] | ||
body | CreateCertificateBody | [required] |
crate::models::CreateCertificateResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::CertificateChainResponse retrieve_certificate_chain(collection_id, gateway_id, device_id) Get certificate chain
Get the certificate chain for the root CA and intermediate certificates used by the device, gateway and server certificates. It is highly recommended to verify the server certificate when sending data to avoid any man-in-the-middle attacks. This chain will contain all required certificates needed to verify the client certificate.
Name | Type | Description | Required | Notes |
---|---|---|---|---|
collection_id | String | [required] | ||
gateway_id | Option<String> | |||
device_id | Option<String> |
crate::models::CertificateChainResponse
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::SignCertificateResponse sign_certificate(collection_id, body) Sign certificate
Sign a device or gateway (aka client) certificate. The certificate is a X509 Certificate signing request PEM encoded. The certificate will be valid for 14 days and must be renewed.
Name | Type | Description | Required | Notes |
---|---|---|---|---|
collection_id | String | [required] | ||
body | SignCertificateBody | [required] |
crate::models::SignCertificateResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::VerifyCertificateResponse verify_certificate(collection_id, body) Verify certificate
Verify client certificate. If a client certificate fails it can be tricky to pinpoint exactly why the certificate isn't accepted. This resource validates the client certificate and returns the error in plain text.
Name | Type | Description | Required | Notes |
---|---|---|---|---|
collection_id | String | [required] | ||
body | VerifyCertificateBody | [required] |
crate::models::VerifyCertificateResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]