actions
Creates, updates, deletes, gets or lists an actions resource.
Overview
| Name | actions |
| Type | Resource |
| Id | godaddy.certificates.actions |
Fields
The following fields are returned by SELECT queries:
- certificate_action_retrieve
Action retrieval successful
| Name | Datatype | Description |
|---|---|---|
createdAt | string (iso-datetime) | Date action created |
type | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
certificate_action_retrieve | select | certificate_id | This method is used to retrieve all stateful actions relating to a certificate lifecycle. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
certificate_id | string | Certificate id to register for callback |
SELECT examples
- certificate_action_retrieve
This method is used to retrieve all stateful actions relating to a certificate lifecycle.
SELECT
createdAt,
type
FROM godaddy.certificates.actions
WHERE certificate_id = '{{ certificate_id }}' -- required
;