/
Get employee by ID
Get employee by ID
Security
oauth2(Required scopes: employee:read) or bearerAuth or apiKeyHeader
GET
- oauth2
- bearerAuth
- apiKeyHeader
curl -i -X GET \
'https://sandboxapi.peach.finance/api/employees/{employeeId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "message": "string", "status": 0, "data": { "createdAt": "2019-08-24T14:15:22Z", "deletedAt": "2019-08-24T14:15:22Z", "id": "string", "updatedAt": "2019-08-24T14:15:22Z", "firstName": "string", "lastName": "string", "assignedInvestorIds": [ … ], "availableAndPermittedTasktypes": [ … ], "companyId": "string", "displayName": "string", "email": "string", "externalId": "string", "jobName": "string", "object": "Employee", "phone": "string", "teams": [ … ], "user": { … } } }