Skip to content

UANATACA RA API DOCUMENTATION (v1)

Download OpenAPI description
Languages
Servers

https://api.uanataca.com/

Operations
Operations
Operations
Operations
Operations

Request

Activates the renewal option for a certificate

Path
idstringrequired

The response status message

curl -i -X POST \
  'https://api.uanataca.com/api/v1/requests/{id}/enable_renewal'

Responses

Successful Response

Bodyapplication/json
statusstring

The response status message (renewal enabled)

Response
application/json
{ "status": "Renewal enabled for request" }

Request

Deactivates the renewal option for a certificate

Path
idstringrequired

The response status message

curl -i -X POST \
  'https://api.uanataca.com/api/v1/requests/{id}/disable_renewal'

Responses

Successful Response

Bodyapplication/json
statusstring

The response status message (renewal disabled)

Response
application/json
{ "status": "Renewal disabled for request" }

Request

Displays information about renewal status of a request

Path
idstringrequired

The response status message

curl -i -X GET \
  'https://api.uanataca.com/api/v1/requests/{id}/renewal_status/'

Responses

Successful Response

Bodyapplication/json
request_is_renewableboolean

Shows if the request is eligible for renewal

renewal_enabledboolean

Shows if the request has renewal enabled

reasonstring

Detailed reason of the current status

Response
application/json
{ "request_is_renewable": false, "renewal_enabled": false, "reason": "Not yet enabled" }
Operations
Operations