EntityRepresentative

Get All

GET
Get representatives for an entity

Path parameters

entityIdstringRequired

Response

This endpoint returns a list of objects
id
string
name
object
phone
object
email
string
address
object
birthDateProvided
boolean
governmentIDProvided
boolean
responsibilities
object
createdOn
datetime
updatedOn
datetime
disabledOn
datetimeOptional
GET
1curl https://api.mercoa.com/entity/ent_8545a84e-a45f-41bf-bdf1-33b42a55812c/representatives \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1[
2 {
3 "id": "rep_958c4ffb-dc06-494c-a0e0-1b4946c6bb0f",
4 "name": {
5 "firstName": "Jane",
6 "lastName": "Smith"
7 },
8 "phone": {
9 "countryCode": "1",
10 "number": "2075551234"
11 },
12 "email": "jane.smith@acme.com",
13 "address": {
14 "addressLine1": "456 Main St",
15 "city": "New York",
16 "stateOrProvince": "NY",
17 "postalCode": "10001",
18 "country": "US"
19 },
20 "birthDateProvided": true,
21 "governmentIDProvided": true,
22 "responsibilities": {
23 "isOwner": true,
24 "ownershipPercentage": 40
25 },
26 "createdOn": "2024-01-01T00:00:00Z",
27 "updatedOn": "2024-01-01T00:00:00Z",
28 "disabledOn": null
29 },
30 {
31 "id": "rep_7df2974a-4069-454c-912f-7e58ebe030fb",
32 "name": {
33 "firstName": "John",
34 "lastName": "Adams",
35 "middleName": "Quincy",
36 "suffix": "Jr."
37 },
38 "phone": {
39 "countryCode": "1",
40 "number": "4155551234"
41 },
42 "email": "john.doe@acme.com",
43 "address": {
44 "addressLine1": "123 Main St",
45 "city": "San Francisco",
46 "stateOrProvince": "CA",
47 "postalCode": "94105",
48 "addressLine2": "Unit 1",
49 "country": "US"
50 },
51 "birthDateProvided": true,
52 "governmentIDProvided": true,
53 "responsibilities": {
54 "isController": true,
55 "isOwner": true,
56 "ownershipPercentage": 40
57 },
58 "createdOn": "2024-01-01T00:00:00Z",
59 "updatedOn": "2024-01-01T00:00:00Z",
60 "disabledOn": null
61 }
62]