Skip to main content

Get entities from Features

GET 

https://api.elfsquad.io/data/1/Features

Get entities from Features

Request

Query Parameters

    $top integer

    Possible values: >= 0

    Show only the first n items

    $skip integer

    Possible values: >= 0

    Skip the first n items

    $search string

    Search items by search phrases

    $filter string

    Filter items by property values

    $count boolean

    Include count of items

    $orderby string[]

    Possible values: [name, name desc, articleCode, articleCode desc, type, type desc, salesPrice, salesPrice desc, disallowDiscount, disallowDiscount desc, minValue, minValue desc, maxValue, maxValue desc, stepValue, stepValue desc, packingUnit, packingUnit desc, categoryId, categoryId desc, marginPct, marginPct desc, cardImageUrl, cardImageUrl desc, vatId, vatId desc, unitOfMeasurementId, unitOfMeasurementId desc, tags, tags desc, _subcategoryIds, _subcategoryIds desc, isRecommendation, isRecommendation desc, id, id desc, createdDate, createdDate desc, updatedDate, updatedDate desc, organizationId, organizationId desc, reference, reference desc, creatorId, creatorId desc, customField1, customField1 desc, customField2, customField2 desc, customField3, customField3 desc, customField4, customField4 desc, customField5, customField5 desc]

    Order items by property values

    $select string[]

    Possible values: [name, articleCode, type, salesPrice, disallowDiscount, minValue, maxValue, stepValue, packingUnit, categoryId, marginPct, cardImageUrl, vatId, unitOfMeasurementId, tags, _subcategoryIds, isRecommendation, id, createdDate, updatedDate, organizationId, reference, creatorId, customField1, customField2, customField3, customField4, customField5, category, organization]

    Select properties to be returned

    $expand string[]

    Possible values: [*, category, organization]

    Expand related entities

Responses

Retrieved entities

Schema
    value object[]
  • Array [
  • namestring
    articleCodestring
    type
    salesPricedecimal
    disallowDiscountboolean
    minValuedecimal
    maxValuedecimal
    stepValuedecimal
    packingUnitdecimal
    categoryIduuid
    marginPctdecimal
    cardImageUrlstring
    vatIduuid
    unitOfMeasurementIduuid
    tagsstring[]
    _subcategoryIdsuuid[]

    Possible values: Value must match regular expression ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$

    isRecommendationboolean
    iduuid
    createdDatedate-time
    updatedDatedate-time
    organizationIduuid
    referencestring
    creatorIduuid
    customField1string
    customField2string
    customField3string
    customField4string
    customField5string
    category
    organization
  • ]
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.elfsquad.io/data/1/Features");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.elfsquad.io/data/1
Parameters
— query
— query
— query
— query
— query
— query
— query
— query
ResponseClear

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