latestSwagger 2.02026-08-109450223.9 KB

94acb422c07d

Actor
Reseller

Get Actor

Shows details of the entities associated with the supplied API credentials. It will only return the fields relevant to the current credentials. For more information on User management, see Product Support

get/v1/actor

Response

Get Actor

{"stackTrail":"components:schemas:Actor:properties:reseller","oasType":"schema","type":"unknown","description":"Information about the reseller associated with the supplied API credentials (if any).","example":{"id":12345,"name":"ResellerCo"}}
{"stackTrail":"components:schemas:Actor:properties:account","oasType":"schema","type":"unknown","description":"Information about the account associated with the supplied API credentials (if any).","example":{"id":12345,"name":"Huntress","subdomain":"huntress","status":"enabled"}}
{"stackTrail":"components:schemas:Actor:properties:user","oasType":"schema","type":"unknown","description":"Information about the user associated with the supplied API credentials (if any).","example":{"id":12345,"email":"email@example.com","name":"Your User"}}

Example response

{
  "reseller": {
    "id": 12345,
    "name": "ResellerCo"
  },
  "account": {
    "id": 12345,
    "name": "Huntress",
    "subdomain": "huntress",
    "status": "enabled"
  },
  "user": {
    "id": 12345,
    "email": "email@example.com",
    "name": "Your User"
  }
}