Table of Contents


Get entity list

You can use this resource to retrieve a list of entities available in your Magentrix Organization. The list is dynamically generated based on the latest platform activity. Make a GET request to this endpoint to download the complete list.

 

curl GET 'https://{domain}/api/3.0/entity'
  -H 'Content-Type: application/json'
  -H 'Accept: application/json'
  -H 'Authorization: Bearer {access_token}'

 

Note: The response may vary based on the permission of the user making the request. Each user only sees the list of entities they are authorized to access.

 

Successful Response

HTTP 200 OK

[ 
  {
    "Id": "7NS00000000008t0000",
    "Label": "Account",
    "PluralLabel": "Accounts",
    "Name": "Account",
    "KeyPrefix": "006"
  },
  {
    "Id": "7NS0000000000a10000",
    "Label": "Contact",
    "PluralLabel": "Contacts",
    "Name": "Contact",
    "KeyPrefix": "007"
  },
  {
    "Id": "7NS0000000001210000",
    "Label": "Opportunity",
    "PluralLabel": "Opportunities",
    "Name": "Opportunity",
    "KeyPrefix": "009"
  },
  {
    "Id": "7NS0000000000yL0000",
    "Label": "Campaign",
    "PluralLabel": "Campaigns",
    "Name": "Campaign",
    "KeyPrefix": "0A9"
  }
]

 

What Is Next?