Create Asset Owner

Creates an asset owner.

Endpoint URL

https://{{base_url}}/api/v2/asset-owner

Authentication and rate limits

ItemDetails
Authentication methodOAuth 2.0 Bearer token
Rate limitRate Limit

Requests Example

curl --request POST \
  --url "https://{{base_url}}/api/v2/asset-owner" \
  --header "Authorization: Bearer $BEARER_TOKEN" \
  --header "Content-Type: application/json" \
  --data-raw "$JSON"

Request Syntax

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

Body 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.

  • name (string) --

    [REQUIRED]
    The name of the asset owner.
    Max characters = 50
    The name of the asset owner must be unique per account.

  • email (string) --

    The email of the asset owner.
    Max characters = 254

  • phone (string) --

    The phone of the asset owner.
    Max characters = 20

Language
Click Try It! to start a request and see the response here!