GET

Search Origin - 02.Read many

Return a list with all possible search origins to create a trademark search.

Important

Calls to this method must include the cookie .LawPanel.AuthCookie in order to identify you at user level. For more details about authentication please check this link. To obtain the cookie you can use the method Login.

Request URL

Request parameters

(optional)
integer

Take N records. Default value is 10. Max value is 100.

(optional)
integer

Skip N records.

Request headers

string
Subscription key which provides access to this API.

Response 200

Return a list with all search origin available to use.

  • string id: The ID for the search origin.
  • integer code: A positive integer number to identify origin in a simple way..
  • string name: Name for the search origin.
  • string description: A human readable description for the search origin.

Loading...
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string"
      },
      "code": {
        "type": "integer"
      },
      "name": {
        "type": "string"
      },
      "description": {
        "type": "string"
      }
    },
    "required": [
      "id",
      "code",
      "name",
      "description"
    ]
  },
  "example": [
    {
      "id": "bd57d0f2-0ac2-4c7d-a980-a89500075e3b",
      "code": 6,
      "name": "Bot",
      "description": "Represent searchs from one of our IA bot engines."
    },
    {
      "id": "5b45f41e-9f0d-4d91-b761-a673000392ef",
      "code": 5,
      "name": "Dashboard",
      "description": "Represent searchs from our dashboard website."
    },
    {
      "id": "9c00ba17-ac4f-4de2-9e04-a67300039292",
      "code": 4,
      "name": "Web site search",
      "description": "Represent searchs from web sites."
    },
    {
      "id": "f5d7d692-dab3-4744-9e0b-a67300039236",
      "code": 3,
      "name": "iOS app search",
      "description": "Represent searches from iOS apps."
    },
    {
      "id": "7c723daa-9d75-433d-848d-a673000391da",
      "code": 2,
      "name": "Android app search",
      "description": "Represent searches from Android apps."
    },
    {
      "id": "49a7eeba-be07-47d5-bad0-a6730003917a",
      "code": 1,
      "name": "Firm Search Widget",
      "description": "Represent searches from firm's search widget."
    },
    {
      "id": "ec413954-22a7-499e-a93a-a67300039112",
      "code": 0,
      "name": "Unknow source",
      "description": "Represent searches from non determined sources."
    }
  ]
}
* See getting started for more information on how to use this API. You can also check the API change history.