Tools
When given a DER file, extracts and returns the certificate body
Required if the certificate is password-protected
Request was successful
Validation Error
Internal Server Error
POST /api/v4.0/tools/certificates/extractder HTTP/1.1
Host:
Content-Type: multipart/form-data
Accept: */*
Content-Length: 39
{
"fileName": "binary",
"password": "text"
}
No content
When given a PEM file, extracts and returns the certificate body
Required if the certificate is password-protected
Request was successful
Validation Error
Internal Server Error
POST /api/v4.0/tools/certificates/extractpem HTTP/1.1
Host:
Content-Type: multipart/form-data
Accept: */*
Content-Length: 39
{
"fileName": "binary",
"password": "text"
}
No content
When given a PFX file, extracts and returns the certificate body and private key
Required if the certificate is password-protected
Request was successful
Validation Error
Internal Server Error
POST /api/v4.0/tools/certificates/extractpfx HTTP/1.1
Host:
Content-Type: multipart/form-data
Accept: */*
Content-Length: 39
{
"fileName": "binary",
"password": "text"
}
No content
Publish the current version of the specified configuration to the system storage bucket. By default, the name and url of the bucket are 'prod' and 'gs://rbz-$PLANETNAME-config/prod'. These values are also available in the console; navigate to System -> System DB -> select the system namespace -> publishinfo -> the buckets settings. Also, only one publish operation can occur at a time. If a 503 error is received, the previous operation has not yet finished, so the publish command should be resent until it is successful.
Configuration published successfully
Publish Configuration Validation Error
Validation Error
Internal Server Error
Publish Already In Progress
PUT /api/v4.0/tools/publish/{config} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 30
[
{
"name": "text",
"url": "text"
}
]
{
"message": "Successfully updated entry"
}
Last updated
Was this helpful?