TonicDM Product API (0.0.5)

Main Product API

Download OpenAPI description
Languages
Servers
Mock server

https://developers-internal.tonicdm.com/_mock/tonicdm-product/

Server located in the USA

https://us-api.tonicdm.com/

Server located in Germany

https://de-api.tonicdm.com/

Server located in Ireland

https://ie-api.tonicdm.com/

Organizations

Data on Organizations (includes both staff and contacts, so these do not need to be looked up separately and combined).

Operations

People

Data on People (includes both staff and contacts, so these do not need to be looked up separately and combined).

Operations

Projects

The list of Projects for the customer.

Operations

Teams

The list of People associated with a Project.

Operations

Groups

The list of Groups associated with a Prject.

Operations

New Group

Request

Create a new Group in a Project.

Bodyapplication/json
statusstring(Status)

Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.

Default "active"
Enum"active""inactive""deleted"
projectIdstring(CompactUUID)^[0-9a-fA-F]{32}$required
Example: "8e8aa42241794371ae9d0ed7b67a8c86"
namestring[ 1 .. 40 ] charactersrequired

The name of the group.

scopestring

The purpose of the group; where it should be used.

Default "shared"
Enum"shared""personal""discipline"
membersArray of objects
curl -i -X POST \
  https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/groups \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "status": "active",
    "projectId": "f71f272f752c4307b36c5124688562c4",
    "ownerId": "e913a8f228cb4f1981d577e05d64a83b",
    "name": "Facilities Advisory Group",
    "scope": "shared",
    "members": [
      {
        "emailAddressId": "496061e05a9b43a98d7cdfb0ad15e158",
        "addressPart": "to"
      },
      {
        "emailAddressId": "74c92be965a94f8c96e79380dbf3ffe3",
        "addressPart": "cc"
      }
    ]
  }'

Responses

Successfully created the resource you sent

Bodyapplication/json
idstring(CompactUUID)^[0-9a-fA-F]{32}$
Example: "8e8aa42241794371ae9d0ed7b67a8c86"
datetimeCreatedstring(date-time)read-only

The date and time this Certification definition was created.

datetimeUpdatedstring(date-time)read-only

The date and time this Certification definition was last updated.

statusstring(Status)

Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.

Default "active"
Enum"active""inactive""deleted"
projectIdstring(CompactUUID)^[0-9a-fA-F]{32}$
Example: "8e8aa42241794371ae9d0ed7b67a8c86"
ownerIdstring^[0-9a-fA-F]{32}$read-only

the emailAddress UUID of the creator or last updater of the group.

Example: "8e8aa42241794371ae9d0ed7b67a8c86"
namestring[ 1 .. 40 ] characters

The name of the group.

scopestring

The purpose of the group; where it should be used.

Default "shared"
Enum"shared""personal""discipline"
membersArray of objects
Response
application/json
{ "id": "7c2a254c392a4f0aafe08853d7bb2ba7", "datetimeCreated": "2024-06-15T14:31:23-08:00", "datetimeUpdated": "2024-06-15T14:31:23-08:00", "status": "active", "projectId": "f71f272f752c4307b36c5124688562c4", "ownerId": "e913a8f228cb4f1981d577e05d64a83b", "name": "Facilities Advisory Group", "scope": "shared", "members": [ { … }, { … } ] }

Edit Group

Request

Make changes to a Group record.

Bodyapplication/json
idstring(CompactUUID)^[0-9a-fA-F]{32}$required
Example: "8e8aa42241794371ae9d0ed7b67a8c86"
statusstring(Status)

Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.

Default "active"
Enum"active""inactive""deleted"
projectIdstring(CompactUUID)^[0-9a-fA-F]{32}$
Example: "8e8aa42241794371ae9d0ed7b67a8c86"
namestring[ 1 .. 40 ] characters

The name of the group.

scopestring

The purpose of the group; where it should be used.

Default "shared"
Enum"shared""personal""discipline"
membersArray of objects
curl -i -X PATCH \
  https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/groups \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "7c2a254c392a4f0aafe08853d7bb2ba7",
    "status": "active",
    "projectId": "f71f272f752c4307b36c5124688562c4",
    "ownerId": "e913a8f228cb4f1981d577e05d64a83b",
    "name": "Facilities Advisory Group",
    "scope": "shared",
    "members": [
      {
        "emailAddressId": "496061e05a9b43a98d7cdfb0ad15e158",
        "addressPart": "to"
      },
      {
        "emailAddressId": "74c92be965a94f8c96e79380dbf3ffe3",
        "addressPart": "cc"
      }
    ]
  }'

Responses

Successfully updated the resource you requested

Bodyapplication/json
idstring(CompactUUID)^[0-9a-fA-F]{32}$
Example: "8e8aa42241794371ae9d0ed7b67a8c86"
datetimeCreatedstring(date-time)read-only

The date and time this Certification definition was created.

datetimeUpdatedstring(date-time)read-only

The date and time this Certification definition was last updated.

statusstring(Status)

Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.

Default "active"
Enum"active""inactive""deleted"
projectIdstring(CompactUUID)^[0-9a-fA-F]{32}$
Example: "8e8aa42241794371ae9d0ed7b67a8c86"
ownerIdstring^[0-9a-fA-F]{32}$read-only

the emailAddress UUID of the creator or last updater of the group.

Example: "8e8aa42241794371ae9d0ed7b67a8c86"
namestring[ 1 .. 40 ] characters

The name of the group.

scopestring

The purpose of the group; where it should be used.

Default "shared"
Enum"shared""personal""discipline"
membersArray of objects
Response
application/json
{ "id": "7c2a254c392a4f0aafe08853d7bb2ba7", "datetimeCreated": "2024-06-15T14:31:23-08:00", "datetimeUpdated": "2024-06-15T14:31:23-08:00", "status": "active", "projectId": "f71f272f752c4307b36c5124688562c4", "ownerId": "e913a8f228cb4f1981d577e05d64a83b", "name": "Facilities Advisory Group", "scope": "shared", "members": [ { … }, { … } ] }

Notes

Operations relating to the Notes that can be attached to various items.

Operations

Disciplines

Disciplines are recognized areas of professional expertise.

Operations

Certifications

Certifications recognize areas of professional specialty or project accomplishments.

Operations

Filesets

APIs to the Fileset module for accessing all files attached to objects in TonicDM.

Operations

Manual Uploading

APIs to the Fileset module for uploading files to the TonicDM cloud.

Operations

Cloud File Systems

Managing cloud file systems that TonicDM can connect to.

Operations

Correspondence

Managing Correspondence Data

Operations

File Transfers

APIs to the File Transfers Workflow module.

Operations

RFIs

APIs to the RFIs Workflow module.

Operations

Submittals

APIs to the Submittals Workflow module.

Operations

PCOs

APIs to the PCOs Workflow module.

Operations

COs

APIs to the COs Workflow module.

Operations

Tasks

APIs to the Tasks Workflow module.

Operations