@digitalocean/dots - v1.0.1
    Preparing search index...

    Interface RecordsRequestBuilderGetQueryParameters

    To get a listing of all records configured for a domain, send a GET request to /v2/domains/$DOMAIN_NAME/records.The list of records returned can be filtered by using the name and type query parameters. For example, to only include A records for a domain, send a GET request to /v2/domains/$DOMAIN_NAME/records?type=A. name must be a fully qualified record name. For example, to only include records matching sub.example.com, send a GET request to /v2/domains/$DOMAIN_NAME/records?name=sub.example.com. Both name and type may be used together.

    interface RecordsRequestBuilderGetQueryParameters {
        name?: string;
        page?: number;
        perPage?: number;
        type?: GetTypeQueryParameterType;
    }
    Index

    Properties

    name?: string

    A fully qualified record name. For example, to only include records matching sub.example.com, send a GET request to /v2/domains/$DOMAIN_NAME/records?name=sub.example.com.

    page?: number

    Which 'page' of paginated results to return.

    perPage?: number

    Number of items returned per page

    The type of the DNS record. For example: A, CNAME, TXT, ...