Skip to main content

Get all Application Keys

GET 

/v2/application-keys

You can use pagination with this resource. For more information, see pagination.

Request

Query Parameters

    page[offset] int64

    Possible values: <= 10000

    The current offset by number of records, not pages. Offset is zero-based. The maximum records you can offset is 10,000. If no page size is set, the page length store setting is used.

    page[limit] int64

    The maximum number of records per page for this response. You can set this value up to 100. If no page size is set, the page length store setting is used.

Responses

OK

Schema
    data object[]
  • Array [
  • id uuid

    Specifies the unique id of the application key.

    name string

    Specifies the name of the application key.

    type string

    Represents the type of object being returned. Always application_key.

    client_id string

    Represents the unique client_id.

    client_secret string

    Represents the unique client_secret.

    reserved_rate_limit integer

    Indicates the reserved rate limit for an application key. For more information, see Application Keys Overview.

    meta object
    timestamps object
    created_at string

    Specifies the creation date of the key.

    updated_at string

    Specifies the last updated date of the key.

    last_used_at string

    Specifies the approximate last used date of the key. A null value indicates that the key has not been used.

    links object
    self string

    Represents a link to the specific resource.

  • ]
  • meta object
    results objectrequired
    total integer

    Total number of results for the entire collection.

    page objectrequired
    limit integer

    The maximum number of records for all pages.

    offset integer

    The current offset by number of pages.

    current integer

    The current number of pages.

    total integer

    The total number of records for the entire collection.

    total_reserved_rate_limit integer

    Total reserved rate limit.

    links object
    current urirequired

    Always the current page.

    first urirequired

    Always the first page.

    last urirequired

    Always null if there is only one page.

    next stringnullrequired

    Always null if there is only one page.

    prev stringnullrequired

    Always null if the user is on the first page.

Loading...