PUT data

Updated by Daniel Sjögren

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/labels/{labelId}

This API call will update a label.

Field description

Mandatory fields will be marked with an *asterisk.

Endpoint
  • labelId: The ID of the label you wish to update*.
Body
  • id: The ID of the label you wish to update*.
  • name: The name of the label you wish to update*.
  • color: The color of the of the label you wish to update.
Response
  • id: Displays the label ID.
  • name: Displays the name of the label.
  • color: Displays the color of the label.
  • domainId: The Quinyx customer ID. This is found in the URL by going to Account settings > Organization > Select the domain at the top of the organization hierarchy.

Example

Endpoint
For the production environment: https://api.quinyx.com/v2/collaboration-groups/labels/123
For RC environment: https://api-rc.quinyx.com/v2/collaboration-groups/labels/123
Requests
Example value:
{
"name": "New label name",
"color": "blue"
}
Responses
Example value:
{
"id": 1234,
"name": "New label name",
"color": "blue",
"domainId": 123
}
Read more about our REST documentation here.


How Did We Do?