Skip to main content
POST
/
api
/
Premium
/
Search
Find Premiums
curl --request POST \
  --url https://api.virtuoussoftware.com/api/Premium/Search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "search": "<string>"
}
'
{
  "list": [
    {
      "id": "<integer>",
      "name": "<string>",
      "code": "<string>",
      "description": "<string>",
      "price": "<double>",
      "fairMarketValue": "<double>",
      "cost": "<double>",
      "inventoryCount": "<integer>",
      "isActive": "<boolean>",
      "createDateTimeUtc": "<dateTime>",
      "createdByUser": "<string>",
      "modifiedDateTimeUtc": "<dateTime>",
      "modifiedByUser": "<string>",
      "customFields": [
        {
          "name": "<string>",
          "value": "<string>",
          "displayName": "<string>"
        },
        {
          "name": "<string>",
          "value": "<string>",
          "displayName": "<string>"
        }
      ]
    },
    {
      "id": "<integer>",
      "name": "<string>",
      "code": "<string>",
      "description": "<string>",
      "price": "<double>",
      "fairMarketValue": "<double>",
      "cost": "<double>",
      "inventoryCount": "<integer>",
      "isActive": "<boolean>",
      "createDateTimeUtc": "<dateTime>",
      "createdByUser": "<string>",
      "modifiedDateTimeUtc": "<dateTime>",
      "modifiedByUser": "<string>",
      "customFields": [
        {
          "name": "<string>",
          "value": "<string>",
          "displayName": "<string>"
        },
        {
          "name": "<string>",
          "value": "<string>",
          "displayName": "<string>"
        }
      ]
    }
  ],
  "total": "<integer>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

skip
string

How many items to skip.

take
string

How many items to take.

Body

application/json

Response

200 - application/json

OK

list
object[]
total
string
Last modified on June 5, 2026