List nameservers

Lists all the nameservers that are available and can be assigned to new groups when they are created. .

GET
https://dennis.localhost/api/v1/nameservers

If successful, this endpoint will return a 200 OK status.

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    nameservers: [ Nameserver {
        id: Integer
        name: String
        server: Integer
        available: Boolean
        created_at: Unix Timestamp
        updated_at: Unix Timestamp
    } ]
}