docs: Quote example ids in Swagger

This commit is contained in:
Maksim Eltyshev
2025-09-08 19:14:31 +02:00
parent 5636cf27c0
commit 2c716a53c9
107 changed files with 181 additions and 180 deletions

View File

@@ -34,7 +34,8 @@
* type: object * type: object
* properties: * properties:
* item: * item:
* type: null * type: object
* nullable: true
* description: No data returned * description: No data returned
* example: null * example: null
* 400: * 400:

View File

@@ -18,14 +18,14 @@
* description: ID of the board to get actions for * description: ID of the board to get actions for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: beforeId * - name: beforeId
* in: query * in: query
* required: false * required: false
* description: ID to get actions before (for pagination) * description: ID to get actions before (for pagination)
* schema: * schema:
* type: string * type: string
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: Board actions retrieved successfully * description: Board actions retrieved successfully

View File

@@ -18,14 +18,14 @@
* description: ID of the card to get actions for * description: ID of the card to get actions for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: beforeId * - name: beforeId
* in: query * in: query
* required: false * required: false
* description: ID to get actions before (for pagination) * description: ID to get actions before (for pagination)
* schema: * schema:
* type: string * type: string
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: Card actions retrieved successfully * description: Card actions retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the card to create the attachment on * description: ID of the card to create the attachment on
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the attachment to delete * description: ID of the attachment to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Attachment deleted successfully * description: Attachment deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the attachment to update * description: ID of the attachment to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the project to upload background image for * description: ID of the project to upload background image for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the background image to delete * description: ID of the background image to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Background image deleted successfully * description: Background image deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the project to create the base custom field group in * description: ID of the project to create the base custom field group in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the base custom field group to delete * description: ID of the base custom field group to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Base custom field group deleted successfully * description: Base custom field group deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the base custom field group to update * description: ID of the base custom field group to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the board to add the user to * description: ID of the board to add the user to
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -32,7 +32,7 @@
* userId: * userId:
* type: string * type: string
* description: ID of the user to add to the board * description: ID of the user to add to the board
* example: 1357158568008091265 * example: "1357158568008091265"
* role: * role:
* type: string * type: string
* enum: [editor, viewer] * enum: [editor, viewer]

View File

@@ -18,7 +18,7 @@
* description: ID of the board membership to remove * description: ID of the board membership to remove
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: User removed from board successfully * description: User removed from board successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the board membership to update * description: ID of the board membership to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the project to create the board in * description: ID of the project to create the board in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the board to delete * description: ID of the board to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Board deleted successfully * description: Board deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the board to retrieve * description: ID of the board to retrieve
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: subscribe * - name: subscribe
* in: query * in: query
* required: false * required: false

View File

@@ -18,7 +18,7 @@
* description: ID of the board to update * description: ID of the board to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the card to add the label to * description: ID of the card to add the label to
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -31,7 +31,7 @@
* labelId: * labelId:
* type: string * type: string
* description: ID of the label to add to the card * description: ID of the label to add to the card
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: Label added to card successfully * description: Label added to card successfully

View File

@@ -18,14 +18,14 @@
* description: ID of the card to remove the label from * description: ID of the card to remove the label from
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: labelId * - name: labelId
* in: path * in: path
* required: true * required: true
* description: ID of the label to remove from the card * description: ID of the label to remove from the card
* schema: * schema:
* type: string * type: string
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: Label removed from card successfully * description: Label removed from card successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the card to add the user to * description: ID of the card to add the user to
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -31,7 +31,7 @@
* userId: * userId:
* type: string * type: string
* description: ID of the card to add the user to * description: ID of the card to add the user to
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: User added to card successfully * description: User added to card successfully

View File

@@ -18,14 +18,14 @@
* description: ID of the card to remove the user from * description: ID of the card to remove the user from
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: userId * - name: userId
* in: path * in: path
* required: true * required: true
* description: ID of the user to remove from the card * description: ID of the user to remove from the card
* schema: * schema:
* type: string * type: string
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: User removed from card successfully * description: User removed from card successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the list to create the card in * description: ID of the list to create the card in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the card to delete * description: ID of the card to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Card deleted successfully * description: Card deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the card to duplicate * description: ID of the card to duplicate
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the list to get cards from (must be an endless list) * description: ID of the list to get cards from (must be an endless list)
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: before * - name: before
* in: query * in: query
* required: false * required: false

View File

@@ -18,7 +18,7 @@
* description: ID of the card to mark notifications as read for * description: ID of the card to mark notifications as read for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Notifications marked as read successfully * description: Notifications marked as read successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the card to retrieve * description: ID of the card to retrieve
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Card details retrieved successfully * description: Card details retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the card to update * description: ID of the card to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -29,16 +29,16 @@
* boardId: * boardId:
* type: string * type: string
* description: ID of the board to move the card to * description: ID of the board to move the card to
* example: 1357158568008091265 * example: "1357158568008091265"
* listId: * listId:
* type: string * type: string
* description: ID of the list to move the card to * description: ID of the list to move the card to
* example: 1357158568008091266 * example: "1357158568008091266"
* coverAttachmentId: * coverAttachmentId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the attachment used as cover * description: ID of the attachment used as cover
* example: 1357158568008091267 * example: "1357158568008091267"
* type: * type:
* type: string * type: string
* enum: [project, story] * enum: [project, story]

View File

@@ -18,7 +18,7 @@
* description: ID of the card to create the comment on * description: ID of the card to create the comment on
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the comment to delete * description: ID of the comment to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Comment deleted successfully * description: Comment deleted successfully

View File

@@ -18,14 +18,14 @@
* description: ID of the card to retrieve comments for * description: ID of the card to retrieve comments for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: beforeId * - name: beforeId
* in: query * in: query
* required: false * required: false
* description: ID to get comments before (for pagination) * description: ID to get comments before (for pagination)
* schema: * schema:
* type: string * type: string
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: Comments retrieved successfully * description: Comments retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the comment to update * description: ID of the comment to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the board to create the custom field group in * description: ID of the board to create the custom field group in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -31,7 +31,7 @@
* baseCustomFieldGroupId: * baseCustomFieldGroupId:
* type: string * type: string
* description: ID of the base custom field group used as a template * description: ID of the base custom field group used as a template
* example: 1357158568008091265 * example: "1357158568008091265"
* position: * position:
* type: number * type: number
* minimum: 0 * minimum: 0

View File

@@ -18,7 +18,7 @@
* description: ID of the card to create the custom field group in * description: ID of the card to create the custom field group in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -31,7 +31,7 @@
* baseCustomFieldGroupId: * baseCustomFieldGroupId:
* type: string * type: string
* description: ID of the base custom field group used as a template * description: ID of the base custom field group used as a template
* example: 1357158568008091265 * example: "1357158568008091265"
* position: * position:
* type: number * type: number
* minimum: 0 * minimum: 0

View File

@@ -18,7 +18,7 @@
* description: ID of the custom field group to delete * description: ID of the custom field group to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Custom field group deleted successfully * description: Custom field group deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the custom field group to retrieve * description: ID of the custom field group to retrieve
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Custom field group details retrieved successfully * description: Custom field group details retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the custom field group to update * description: ID of the custom field group to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the card to set the custom field value for * description: ID of the card to set the custom field value for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -33,11 +33,11 @@
* customFieldGroupId: * customFieldGroupId:
* type: string * type: string
* description: ID of the custom field group the value belongs to * description: ID of the custom field group the value belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* customFieldId: * customFieldId:
* type: string * type: string
* description: ID of the custom field the value belongs to * description: ID of the custom field the value belongs to
* example: 1357158568008091266 * example: "1357158568008091266"
* content: * content:
* type: string * type: string
* maxLength: 512 * maxLength: 512

View File

@@ -18,21 +18,21 @@
* description: ID of the card to delete the custom field value from * description: ID of the card to delete the custom field value from
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: customFieldGroupId * - name: customFieldGroupId
* in: path * in: path
* required: true * required: true
* description: ID of the custom field group the value belongs to * description: ID of the custom field group the value belongs to
* schema: * schema:
* type: string * type: string
* example: 1357158568008091265 * example: "1357158568008091265"
* - name: customFieldId * - name: customFieldId
* in: path * in: path
* required: true * required: true
* description: ID of the custom field the value belongs to * description: ID of the custom field the value belongs to
* schema: * schema:
* type: string * type: string
* example: 1357158568008091266 * example: "1357158568008091266"
* responses: * responses:
* 200: * 200:
* description: Custom field value deleted successfully * description: Custom field value deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the base custom field group to create the custom field in * description: ID of the base custom field group to create the custom field in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the custom field group to create the custom field in * description: ID of the custom field group to create the custom field in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the custom field to delete * description: ID of the custom field to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Custom field deleted successfully * description: Custom field deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the custom field to update * description: ID of the custom field to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the file attachment to download the thumbnail for * description: ID of the file attachment to download the thumbnail for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: fileName * - name: fileName
* in: path * in: path
* required: true * required: true

View File

@@ -18,7 +18,7 @@
* description: ID of the file attachment to download * description: ID of the file attachment to download
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: File attachment content returned successfully * description: File attachment content returned successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the board to create the label in * description: ID of the board to create the label in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the label to delete * description: ID of the label to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Label deleted successfully * description: Label deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the label to update * description: ID of the label to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the list to clear (must be a trash-type list) * description: ID of the list to clear (must be a trash-type list)
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: List cleared successfully * description: List cleared successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the board to create the list in * description: ID of the board to create the list in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the list to delete * description: ID of the list to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: List deleted successfully * description: List deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the source list (must be a closed-type list) * description: ID of the source list (must be a closed-type list)
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -31,7 +31,7 @@
* listId: * listId:
* type: string * type: string
* description: ID of the target list (must be an archive-type list) * description: ID of the target list (must be an archive-type list)
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: Cards moved successfully * description: Cards moved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the list to retrieve * description: ID of the list to retrieve
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: List details retrieved successfully * description: List details retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the list to sort * description: ID of the list to sort
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the list to update * description: ID of the list to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -29,7 +29,7 @@
* boardId: * boardId:
* type: string * type: string
* description: ID of the board to move list to * description: ID of the board to move list to
* example: 1357158568008091265 * example: "1357158568008091265"
* type: * type:
* type: string * type: string
* enum: [active, closed] * enum: [active, closed]

View File

@@ -18,7 +18,7 @@
* description: ID of the board to create notification service for * description: ID of the board to create notification service for
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the user to create notification service for (must be the current user) * description: ID of the user to create notification service for (must be the current user)
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the notification service to delete * description: ID of the notification service to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Notification service deleted successfully * description: Notification service deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the notification service to test * description: ID of the notification service to test
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Test notification sent successfully * description: Test notification sent successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the notification service to update * description: ID of the notification service to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the notification to retrieve * description: ID of the notification to retrieve
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Notification details retrieved successfully * description: Notification details retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the notification to update * description: ID of the notification to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the project to add the manager to * description: ID of the project to add the manager to
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -31,7 +31,7 @@
* userId: * userId:
* type: string * type: string
* description: ID of the user who is assigned as project manager * description: ID of the user who is assigned as project manager
* example: 1357158568008091265 * example: "1357158568008091265"
* responses: * responses:
* 200: * 200:
* description: Project manager added successfully * description: Project manager added successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the project manager to remove * description: ID of the project manager to remove
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Project manager removed successfully * description: Project manager removed successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the project to delete * description: ID of the project to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Project deleted successfully * description: Project deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the project to retrieve * description: ID of the project to retrieve
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Project details retrieved successfully * description: Project details retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the project to update * description: ID of the project to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -30,12 +30,12 @@
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the project manager who owns the project * description: ID of the project manager who owns the project
* example: 1357158568008091265 * example: "1357158568008091265"
* backgroundImageId: * backgroundImageId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the background image used as background * description: ID of the background image used as background
* example: 1357158568008091266 * example: "1357158568008091266"
* name: * name:
* type: string * type: string
* maxLength: 128 * maxLength: 128

View File

@@ -18,7 +18,7 @@
* description: ID of the card to create task list in * description: ID of the card to create task list in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the task list to delete * description: ID of the task list to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Task list deleted successfully * description: Task list deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the task list to retrieve * description: ID of the task list to retrieve
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Task list details retrieved successfully * description: Task list details retrieved successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the task list to update * description: ID of the task list to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the task list to create task in * description: ID of the task list to create task in
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -31,7 +31,7 @@
* linkedCardId: * linkedCardId:
* type: string * type: string
* description: ID of the card linked to the task * description: ID of the card linked to the task
* example: 1357158568008091265 * example: "1357158568008091265"
* position: * position:
* type: number * type: number
* minimum: 0 * minimum: 0

View File

@@ -18,7 +18,7 @@
* description: ID of the task to delete * description: ID of the task to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Task deleted successfully * description: Task deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the task to update * description: ID of the task to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:
@@ -29,12 +29,12 @@
* taskListId: * taskListId:
* type: string * type: string
* description: ID of the task list to move the task to * description: ID of the task list to move the task to
* example: 1357158568008091265 * example: "1357158568008091265"
* assigneeUserId: * assigneeUserId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the user assigned to the task (null to unassign) * description: ID of the user assigned to the task (null to unassign)
* example: 1357158568008091266 * example: "1357158568008091266"
* position: * position:
* type: number * type: number
* minimum: 0 * minimum: 0

View File

@@ -18,7 +18,7 @@
* description: ID of the user to delete * description: ID of the user to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: User deleted successfully * description: User deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the user or 'me' for current user * description: ID of the user or 'me' for current user
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* - name: subscribe * - name: subscribe
* in: query * in: query
* required: false * required: false

View File

@@ -18,7 +18,7 @@
* description: ID of the user whose avatar to update * description: ID of the user whose avatar to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the user whose email to update * description: ID of the user whose email to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the user whose password to update * description: ID of the user whose password to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the user whose username to update * description: ID of the user whose username to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the user to update * description: ID of the user to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -18,7 +18,7 @@
* description: ID of the webhook to delete * description: ID of the webhook to delete
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* responses: * responses:
* 200: * 200:
* description: Webhook deleted successfully * description: Webhook deleted successfully

View File

@@ -18,7 +18,7 @@
* description: ID of the webhook to update * description: ID of the webhook to update
* schema: * schema:
* type: string * type: string
* example: 1357158568008091264 * example: "1357158568008091264"
* requestBody: * requestBody:
* required: true * required: true
* content: * content:

View File

@@ -24,21 +24,21 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the action * description: Unique identifier for the action
* example: 1357158568008091264 * example: "1357158568008091264"
* boardId: * boardId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the board where the action occurred * description: ID of the board where the action occurred
* example: 1357158568008091265 * example: "1357158568008091265"
* cardId: * cardId:
* type: string * type: string
* description: ID of the card where the action occurred * description: ID of the card where the action occurred
* example: 1357158568008091266 * example: "1357158568008091266"
* userId: * userId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the user who performed the action * description: ID of the user who performed the action
* example: 1357158568008091267 * example: "1357158568008091267"
* type: * type:
* type: string * type: string
* enum: [createCard, moveCard, addMemberToCard, removeMemberFromCard, completeTask, uncompleteTask] * enum: [createCard, moveCard, addMemberToCard, removeMemberFromCard, completeTask, uncompleteTask]

View File

@@ -25,16 +25,16 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the attachment * description: Unique identifier for the attachment
* example: 1357158568008091264 * example: "1357158568008091264"
* cardId: * cardId:
* type: string * type: string
* description: ID of the card the attachment belongs to * description: ID of the card the attachment belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* creatorUserId: * creatorUserId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the user who created the attachment * description: ID of the user who created the attachment
* example: 1357158568008091266 * example: "1357158568008091266"
* type: * type:
* type: string * type: string
* enum: [file, link] * enum: [file, link]

View File

@@ -25,11 +25,11 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the background image * description: Unique identifier for the background image
* example: 1357158568008091264 * example: "1357158568008091264"
* projectId: * projectId:
* type: string * type: string
* description: ID of the project the background image belongs to * description: ID of the project the background image belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* size: * size:
* type: string * type: string
* description: File size of the background image in bytes * description: File size of the background image in bytes

View File

@@ -23,11 +23,11 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the base custom field group * description: Unique identifier for the base custom field group
* example: 1357158568008091264 * example: "1357158568008091264"
* projectId: * projectId:
* type: string * type: string
* description: ID of the project the base custom field group belongs to * description: ID of the project the base custom field group belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* name: * name:
* type: string * type: string
* description: Name/title of the base custom field group * description: Name/title of the base custom field group

View File

@@ -24,11 +24,11 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the board * description: Unique identifier for the board
* example: 1357158568008091264 * example: "1357158568008091264"
* projectId: * projectId:
* type: string * type: string
* description: ID of the project the board belongs to * description: ID of the project the board belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* position: * position:
* type: number * type: number
* description: Position of the board within the project * description: Position of the board within the project

View File

@@ -25,19 +25,19 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the board membership * description: Unique identifier for the board membership
* example: 1357158568008091264 * example: "1357158568008091264"
* projectId: * projectId:
* type: string * type: string
* description: ID of the project the board membership belongs to (denormalized) * description: ID of the project the board membership belongs to (denormalized)
* example: 1357158568008091265 * example: "1357158568008091265"
* boardId: * boardId:
* type: string * type: string
* description: ID of the board the membership is associated with * description: ID of the board the membership is associated with
* example: 1357158568008091266 * example: "1357158568008091266"
* userId: * userId:
* type: string * type: string
* description: ID of the user who is a member of the board * description: ID of the user who is a member of the board
* example: 1357158568008091267 * example: "1357158568008091267"
* role: * role:
* type: string * type: string
* enum: [editor, viewer] * enum: [editor, viewer]

View File

@@ -25,30 +25,30 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the card * description: Unique identifier for the card
* example: 1357158568008091264 * example: "1357158568008091264"
* boardId: * boardId:
* type: string * type: string
* description: ID of the board the card belongs to (denormalized) * description: ID of the board the card belongs to (denormalized)
* example: 1357158568008091265 * example: "1357158568008091265"
* listId: * listId:
* type: string * type: string
* description: ID of the list the card belongs to * description: ID of the list the card belongs to
* example: 1357158568008091266 * example: "1357158568008091266"
* creatorUserId: * creatorUserId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the user who created the card * description: ID of the user who created the card
* example: 1357158568008091267 * example: "1357158568008091267"
* prevListId: * prevListId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the previous list the card was in (available when in archive or trash) * description: ID of the previous list the card was in (available when in archive or trash)
* example: 1357158568008091268 * example: "1357158568008091268"
* coverAttachmentId: * coverAttachmentId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the attachment used as cover * description: ID of the attachment used as cover
* example: 1357158568008091269 * example: "1357158568008091269"
* type: * type:
* type: string * type: string
* enum: [project, story] * enum: [project, story]

View File

@@ -23,15 +23,15 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the card-label association * description: Unique identifier for the card-label association
* example: 1357158568008091264 * example: "1357158568008091264"
* cardId: * cardId:
* type: string * type: string
* description: ID of the card the label is associated with * description: ID of the card the label is associated with
* example: 1357158568008091265 * example: "1357158568008091265"
* labelId: * labelId:
* type: string * type: string
* description: ID of the label associated with the card * description: ID of the label associated with the card
* example: 1357158568008091266 * example: "1357158568008091266"
* createdAt: * createdAt:
* type: string * type: string
* format: date-time * format: date-time

View File

@@ -23,15 +23,15 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the card membership * description: Unique identifier for the card membership
* example: 1357158568008091264 * example: "1357158568008091264"
* cardId: * cardId:
* type: string * type: string
* description: ID of the card the user is a member of * description: ID of the card the user is a member of
* example: 1357158568008091265 * example: "1357158568008091265"
* userId: * userId:
* type: string * type: string
* description: ID of the user who is a member of the card * description: ID of the user who is a member of the card
* example: 1357158568008091266 * example: "1357158568008091266"
* createdAt: * createdAt:
* type: string * type: string
* format: date-time * format: date-time

View File

@@ -23,16 +23,16 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the comment * description: Unique identifier for the comment
* example: 1357158568008091264 * example: "1357158568008091264"
* cardId: * cardId:
* type: string * type: string
* description: ID of the card the comment belongs to * description: ID of the card the comment belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* userId: * userId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the user who created the comment * description: ID of the user who created the comment
* example: 1357158568008091266 * example: "1357158568008091266"
* text: * text:
* type: string * type: string
* description: Content of the comment * description: Content of the comment

View File

@@ -24,17 +24,17 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the custom field * description: Unique identifier for the custom field
* example: 1357158568008091264 * example: "1357158568008091264"
* baseCustomFieldGroupId: * baseCustomFieldGroupId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the base custom field group the custom field belongs to * description: ID of the base custom field group the custom field belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* customFieldGroupId: * customFieldGroupId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the custom field group the custom field belongs to * description: ID of the custom field group the custom field belongs to
* example: 1357158568008091266 * example: "1357158568008091266"
* position: * position:
* type: number * type: number
* description: Position of the custom field within the group * description: Position of the custom field within the group

View File

@@ -22,22 +22,22 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the custom field group * description: Unique identifier for the custom field group
* example: 1357158568008091264 * example: "1357158568008091264"
* boardId: * boardId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the board the custom field group belongs to * description: ID of the board the custom field group belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* cardId: * cardId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the card the custom field group belongs to * description: ID of the card the custom field group belongs to
* example: 1357158568008091266 * example: "1357158568008091266"
* baseCustomFieldGroupId: * baseCustomFieldGroupId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the base custom field group used as a template * description: ID of the base custom field group used as a template
* example: 1357158568008091267 * example: "1357158568008091267"
* position: * position:
* type: number * type: number
* description: Position of the custom field group within the board/card * description: Position of the custom field group within the board/card

View File

@@ -25,19 +25,19 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the custom field value * description: Unique identifier for the custom field value
* example: 1357158568008091264 * example: "1357158568008091264"
* cardId: * cardId:
* type: string * type: string
* description: ID of the card the value belongs to * description: ID of the card the value belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* customFieldGroupId: * customFieldGroupId:
* type: string * type: string
* description: ID of the custom field group the value belongs to * description: ID of the custom field group the value belongs to
* example: 1357158568008091266 * example: "1357158568008091266"
* customFieldId: * customFieldId:
* type: string * type: string
* description: ID of the custom field the value belongs to * description: ID of the custom field the value belongs to
* example: 1357158568008091267 * example: "1357158568008091267"
* content: * content:
* type: string * type: string
* description: Content/value of the custom field * description: Content/value of the custom field

View File

@@ -24,11 +24,11 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the label * description: Unique identifier for the label
* example: 1357158568008091264 * example: "1357158568008091264"
* boardId: * boardId:
* type: string * type: string
* description: ID of the board the label belongs to * description: ID of the board the label belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* position: * position:
* type: number * type: number
* description: Position of the label within the board * description: Position of the label within the board

View File

@@ -23,11 +23,11 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the list * description: Unique identifier for the list
* example: 1357158568008091264 * example: "1357158568008091264"
* boardId: * boardId:
* type: string * type: string
* description: ID of the board the list belongs to * description: ID of the board the list belongs to
* example: 1357158568008091265 * example: "1357158568008091265"
* type: * type:
* type: string * type: string
* enum: [active, closed, archive, trash] * enum: [active, closed, archive, trash]

View File

@@ -28,34 +28,34 @@
* id: * id:
* type: string * type: string
* description: Unique identifier for the notification * description: Unique identifier for the notification
* example: 1357158568008091264 * example: "1357158568008091264"
* userId: * userId:
* type: string * type: string
* description: ID of the user who receives the notification * description: ID of the user who receives the notification
* example: 1357158568008091265 * example: "1357158568008091265"
* creatorUserId: * creatorUserId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the user who created the notification * description: ID of the user who created the notification
* example: 1357158568008091266 * example: "1357158568008091266"
* boardId: * boardId:
* type: string * type: string
* description: ID of the board associated with the notification (denormalized) * description: ID of the board associated with the notification (denormalized)
* example: 1357158568008091267 * example: "1357158568008091267"
* cardId: * cardId:
* type: string * type: string
* description: ID of the card associated with the notification * description: ID of the card associated with the notification
* example: 1357158568008091268 * example: "1357158568008091268"
* commentId: * commentId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the comment associated with the notification * description: ID of the comment associated with the notification
* example: 1357158568008091269 * example: "1357158568008091269"
* actionId: * actionId:
* type: string * type: string
* nullable: true * nullable: true
* description: ID of the action associated with the notification * description: ID of the action associated with the notification
* example: 1357158568008091270 * example: "1357158568008091270"
* type: * type:
* type: string * type: string
* enum: [moveCard, commentCard, addMemberToCard, mentionInComment] * enum: [moveCard, commentCard, addMemberToCard, mentionInComment]

Some files were not shown because too many files have changed in this diff Show More