Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    $inlinecount String Query-String Specifies that the response to the request should include a count of the number of entries in the collection
    $skip Integer Query-String The number of entries to skip from the beginning of the collection
    $top Integer Query-String The number of entries to return from the beginning of the collection
    AppKey String Route Unique key for each application
  • Response Parameters

    View Response Codes
    Name Type Description
    __count Number The total count of items in the feed.
    __next String The link for the next page of items in the feed.
    Data AppSecretDto [] The collection of entities for this feed.
    MaxRows Number The maximum number of rows that can be returned (if applicable).
  • Request Example

    Request URL
    GET /developer/apps/50fb26e9b4bc4e7ba78dc19f46bc84bf/secrets?$inlinecount=AllPages&$skip=1&$top=1
  • Response Example

    Response body
    {
      "Data": [
        {
          "Secret": "stringValue",
          "SecretId": 99,
          "ValidFrom": "0001-01-01T00:00:00Z",
          "ValidUntil": "0001-01-01T00:00:00Z"
        }
      ],
      "MaxRows": 99
    }