Skip to content

Latest commit

 

History

History
137 lines (77 loc) · 5.22 KB

CertificatesApi.md

File metadata and controls

137 lines (77 loc) · 5.22 KB

\CertificatesApi

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

create_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.

Parameters

Name Type Description Required Notes
collection_id String [required]
body CreateCertificateBody [required]

Return type

crate::models::CreateCertificateResponse

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

retrieve_certificate_chain

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.

Parameters

Name Type Description Required Notes
collection_id String [required]
gateway_id Option<String>
device_id Option<String>

Return type

crate::models::CertificateChainResponse

Authorization

APIToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

sign_certificate

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.

Parameters

Name Type Description Required Notes
collection_id String [required]
body SignCertificateBody [required]

Return type

crate::models::SignCertificateResponse

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

verify_certificate

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.

Parameters

Name Type Description Required Notes
collection_id String [required]
body VerifyCertificateBody [required]

Return type

crate::models::VerifyCertificateResponse

Authorization

APIToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]