Skip to main content

Get all Custom API Entries

GET 

https://useast.api.elasticpath.com/v2/settings/extensions/custom-apis/:custom_api_id/entries

Get all Custom API Entries

Filtering

The following operators and attributes are available for filtering all Custom API Entries:

AttributeOperatorsExample
idlt,le,eq,gt,ge,ineq(id,859aeba1-03c2-4822-bd4c-89afce93d7eb)
created_atlt,le,eq,gt,gege(created_at,2024-04-29T00:00:00.000Z)
updated_atlt,le,eq,gt,gele(updated_at,2024-04-29T00:00:00.000Z)

The following operators and attributes may be available for filtering Custom API Entries depending on how the Custom Fields for that Custom API are configured.

Field typeOperators
stringlt,le,eq,gt,ge,in,like
integerlt,le,eq,gt,ge,in
floatlt,le,gt,ge,in
booleaneq

Given there is a Custom Field with "slug": "name" and "field_type": "string".

When you get all Custom API Entries with query parameter: ?filter=like(name,*wish*).

Then you will get all Custom API Entries where name contains the string wish.

Sorting

The following attributes are available for sorting. When specified, the results are sorted in ascending order based on the value of the field. To sort in descending order, prefix the attribute with -, for example, -updated_at. The default sort order is created_at in descending order.

  • id
  • created_at
  • updated_at

Request

Path Parameters

    custom_api_id stringrequired

    The id of the Custom API.

    Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6

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.

    filter string

    Filter attributes. For more information, see the Filtering section.

    sort string

    Sort attributes, For more information, see the Sorting section.

Responses

OK

Schema
    data object[]required
  • Array [
  • iduuid

    The unique identifier for the Custom API Entry

    typestring

    Specifies the type of the resource object, use the api_type of the Custom API for Custom API Entry.

    links object
    selfuri

    Specifies the URI of the Custom API Entry.

    Example: /extensions/wishlists/7e067539-6f6c-46e1-8c55-940031b36c6a
    meta object
    timestamps objectrequired
    updated_atstringrequired

    Specifies the date the entity is created.

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

    Specifies the date the entity is last updated.

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

    Specifies the sum of the size of each value stored for the Custom API Entry in bytes. The total size of a Custom API Entry must not exceed 64KB.

    Default value: 0
    Example: 6
    resource_versioninteger

    A unique identifier representing the current version of the resource. When the resource changes, the resource_version value will also change.

    Default value: 0
    Example: 4
    etag_idstring

    A unique identifier representing the current version of the resource that is a hashed string. When the resource changes, the etag_id will also change.

    Example: 6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b
  • ]
  • 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
    links object
    currenturirequired

    Always the current page.

    Example: /v2/settings/custom-apis?page[offset]=0&page[limit]=100
    firsturirequired

    Always the first page.

    Example: /v2/settings/custom-apis?page[offset]=0&page[limit]=100
    lasturirequired

    Always null if there is only one page.

    Example: /v2/settings/custom-apis?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/settings/extensions/custom-apis/:custom_api_id/entries");
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
— pathrequired
— query
— query
— 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.