Profiles

List device profiles

get/profiles

Query parameters

namestring
mineboolean

When true, only return profiles created by the calling user (resolved from X-User-ID, never a client-supplied id).

When true, only return profiles created by the calling user (resolved from X-User-ID, never a client-supplied id).

pageinteger
pageSizeinteger
orderBy'name' | 'created_at' | 'updated_at'
orderByDirection'asc' | 'desc'

Response

OK

$schemastring uri

A URL to the JSON Schema for this object.

Example response

{
  "$schema": "https://example.com/schemas/ResponseProfileInfo.json",
  "items": [
    {
      "$schema": "https://example.com/schemas/ProfileInfo.json",
      "spec": {
        "$schema": "https://example.com/schemas/DeviceSpec.json",
        "location": {
          "$schema": "https://example.com/schemas/Location.json"
        }
      }
    }
  ]
}

Changes