Retrieving DNSSEC Timeline information using the API requires specific syntax depending on whether you are using REST or SOAP. Use this table to find the syntax for your command.
Understanding How The API Works »
REST Syntax
Click to view all REST Resources |
/REST/DNSSECTimelineReport/ POST — Generates a report of events a DNSSEC service has performed and has scheduled to perform.
HTTP Action — PUT
URI — https://api.dynect.net/REST/DNSSECTimelineReport/
|
Arguments — Click for More Info
- string
zone — Required. Name of the zone where the service exists.
- string
end_ts — Timestamp indicating the end of the data range for the report.
Valid values:
Unix timestamp
‘now’
- string
start_ts — Timestamp indicating the beginning of the data range for the report.
Valid values:
epoch timestamp
‘now’
|
Response — Click for More Info
- array
data
- string
scheduled_ts — An epoch time indicating the time of the event.
- string
status — The event status.
Valid values:
complete
waiting
scheduled
- string
event — The event type.
- string
message — Informational message.
- string
sent_notify — Indicates whether or not an Email is/was sent in response to this event.
Valid values:
Y — Email is sent/will be sent.
N — Email was not sent/will not be sent.
- string
user — Name of the user who created this event, if any.
- string
dnssec_key_id — A numeric ID for this key.
|
SOAP Syntax
Click to view all SOAP Commands |
GetDNSSECTimeline — Retrieves the timeline of events the DNSSEC service has performed or is scheduled to perform.
|
Arguments — Click for More Info
- string
token — Required. The session identifier.
- string
zone — Required. Name of the zone where the service will exists.
- string
end_ts — Timestamp indicating the end of the data range for the report.
Valid values:
Unix timestamp
‘now’
- string
start_ts — Timestamp indicating the beginning of the data range for the report.
Valid values:
epoch timestamp
‘now’
|
Response — Click for More Info
- array
data
- string
scheduled_ts — An epoch time indicating the time of the event.
- string
status — The event status.
Valid values:
complete
waiting
scheduled
- string
event — The event type.
- string
message — Informational message.
- string
sent_notify — Indicates whether or not an Email is/was sent in response to this event.
Valid values:
Y — Email is sent/will be sent.
N — Email was not sent/will not be sent.
- string
user — Name of the user who created this event, if any.
- string
dnssec_key_id — A numeric ID for this key.
|
Example Request — Click for More Info
{
'zone' => 'example.com',
'token' => 'asdlj34ot879834cdzjklfK',
'start_ts' => '17 Jun 2010',
'end_ts' => 'now',
}
|
<< DNS API Knowledge Base