Download OpenAPI specification:Download
Brokerage-facing REST API for the Evenhand deal-management platform.
The Evenhand REST API exposes brokerage-tenant resources (contacts, deals, offers, diligence artifacts) over HTTPS using bearer-token authentication issued from the brokerage settings UI.
All requests are scoped to a single brokerage. The bearer token determines both the brokerage tenant and the set of permitted scopes; nothing about the URL or request body changes the tenant.
Returns contacts visible to the calling brokerage. Paginated.
| cursor | string Opaque cursor returned by a previous response. |
| limit | integer [ 1 .. 200 ] Default: 50 Page size. Defaults to 50, max 200. |
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "person",
- "displayName": "string",
- "email": "user@example.com",
- "phone": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
], - "pagination": {
- "hasMore": true,
- "nextCursor": "string"
}
}| type required | string Enum: "person" "company" |
| displayName required | string non-empty |
string <email> | |
| phone | string |
{- "type": "person",
- "displayName": "string",
- "email": "user@example.com",
- "phone": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "person",
- "displayName": "string",
- "email": "user@example.com",
- "phone": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "type": "person",
- "displayName": "string",
- "email": "user@example.com",
- "phone": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}