PUT data

Updated by Victor Jespersen

Api-docs for RC: https://api-rc.quinyx.com/v2/docs (select “collaboration-groups” definition)

Api-docs: https://api.quinyx.com/v2/docs (select “collaboration-groups” definition)

Base URL can be found on links above for both environments. The remainder of this article should be considered a complement to the above Open API documentation.

PUT/groups/{collaborationGroupId}

This API call edits a collaboration group by ID.

Field description

Mandatory fields will be marked with a * icon.

Endpoint
  • collaborationGroupId*: The ID of the collaboration group you want to edit.
Body
  • name*: The name of the collaboration group.
  • labelId*: The label ID associated with the collaboration group.
  • domoDashboardId*: The domo dashboard ID associated with the collaboration group.
Response
  • id: Displays the ID of the collaboration group.
  • name: Displays the name of the collaboration group.
  • parentId: Displays the ID of the associated parent collaboration group for the collaboration group.
  • domainId: Displays the domain ID associated with the collaboration group.
  • labelId: Displays the label ID associated with the collaboration group.
  • domoDashboardId: Displays the domo dashboard ID associated with the collaboration group.

Example

End point
For the production environment: https://api.quinyx.com/v2/collaboration-groups/groups/123
For the RC environment: https://api-rc.quinyx.com/v2/collaboration-groups/groups/123
Body
{
"name": "string",
"labelId": 0,
"domoDashboardId": "string"
}
Body
{
"id": 0,
"name": "string",
"parentId": 0,
"domainId": 0,
"labelId": 0,
"domoDashboardId": "string"
}


How Did We Do?