Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

All API calls require a valid access token to be provided in the Authorization field

...

Table of Contents
indent10px
stylenone

Organization Teams Controller

This controller allows for creating org chart teams entries and assigning their hierarchy.

GET /odata/OrganizationTeams(id)

Retrieve the Organization Team 

Users controller

This controller provides read/write access to User (=> employee/personnel) records.

GET /odata/Users(id)

Retrieve the User object for the given id.

...

403 on unauthorized request

500 on exception


GET /odata/Users

Get all accessible user objects.  Administrators can see all users but otherwise only users in teams managed by the authenticated user will be visible.

...

403 on unauthorized request

500 on exception


POST /odata/Users

Create a new user object.  Body of request is a User object in JSON format.

...

403 on unauthorized request

500 on exception


PATCH /odata/Users(id)

PUT /odata/Users(id)

Update the existing user object with the given id.  Body of request is a User object with the updated fields.  Id must be populated.

...