List all (or one) asset owners.

Endpoint URL

https://dashboard-api.revnue.com/api/v2/asset-owner

Authentication and rate limits

ItemDetails
Authentication methodOAuth 2.0 Bearer token
Rate limitRate Limit

Requests Example

curl --request GET \
  --url 'https://dashboard-api.revnue.com/api/v2/asset-owner/?company=1' \
  --header 'Authorization: Bearer $BEARER_TOKEN'
curl --request GET \
  --url 'https://dashboard-api.revnue.com/api/v2/asset-owner/$id/?company=1' \
  --header 'Authorization: Bearer $BEARER_TOKEN'

Query Parameters

  • company (integer) --

    [REQUIRED]
    The ID of the specific company your API is calling. For accounts with only one company, the default value is 1.
    To lookup a specific company ID, see the List Company API.

  • id (integer) --

    Optional if you want to list a specific asset owner ID. The id parameter is passed as part of the request url /asset-owner/$id/.

Response Syntax

{
  "id": integer,
  "name": "string",
  "email": "string",
  "phone": "string"
}

Response Fields

  • id (integer) --

    The ID of the asset owner.

  • name (string) --

    The name of the asset owner.

  • email (string) --

    The email of the asset owner.

  • phone (string) --

    The phone of the asset owner.