Skip to main content

Get all Application Keys

GET 

https://useast.api.elasticpath.com/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 [
  • iduuid

    Specifies the unique id of the application key.

    Example: 0c45e4ec-26e0-4043-86e4-c15b9cf985a0
    namestring

    Specifies the name of the application key.

    Example: App Key
    typestring

    Represents the type of object being returned. Always application_key.

    client_idstring

    Represents the unique client_id.

    Example: Z2dDp1f1Tg30p2C6ZVit7W1AKUtVhMVSTAPOIK4adA
    client_secretstring

    Represents the unique client_secret.

    Example: jN8qLHneOn8C1rv0r3J3XZK1cRiZG3rajcLi9X1cZZ
    reserved_rate_limitinteger

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

    Example: 10
    meta object
    timestamps object
    created_atstring

    Specifies the creation date of the key.

    Example: 2017-01-10T11:41:19.244Z
    updated_atstring

    Specifies the last updated date of the key.

    Example: 2017-01-10T11:41:19.244Z
    last_used_atstring

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

    Example: 2017-01-10T11:41:19.244Z
    links object
    selfstring

    Represents a link to the specific resource.

    Example: https://useast.api.elasticpath.com/v2/application-keys/0c45e4ec-26e0-4043-86e4-c15b9cf985a0
  • ]
  • meta object
    results objectrequired
    totalinteger

    Total number of results for the entire collection.

    page objectrequired
    limitinteger

    The maximum number of records for all pages.

    Example: 100
    offsetinteger

    The current offset by number of pages.

    Example: 0
    currentinteger

    The current number of pages.

    Example: 1
    totalinteger

    The total number of records for the entire collection.

    Example: 1
    total_reserved_rate_limitinteger

    Total reserved rate limit.

    links object
    currenturirequired

    Always the current page.

    Example: /v2/application-keys?page[offset]=0&page[limit]=100
    firsturirequired

    Always the first page.

    Example: /v2/application-keys?page[offset]=0&page[limit]=100
    lasturirequired

    Always null if there is only one page.

    Example: /v2/application-keys?page[offset]=0&page[limit]=100
    nextstring | nullrequired

    Always null if there is only one page.

    Example: null
    prevstring | nullrequired

    Always null if the user is on the first page.

    Example: null

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://useast.api.elasticpath.com/v2/application-keys");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://useast.api.elasticpath.com
Auth
Parameters
— query
— query
ResponseClear

Click the Send API Request button above and see the response here!

We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.