From 6ecc0b7f1e2c0b0c860173060af796a6dcc8cf26 Mon Sep 17 00:00:00 2001 From: "camunda-docs-pr-automation[bot]" <187566563+camunda-docs-pr-automation[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:48:06 -0600 Subject: [PATCH] docs: update REST API spec (#5177) Co-authored-by: tmetzke --- api/camunda/camunda-openapi.yaml | 204 ++----------- .../assign-group-to-tenant.api.mdx | 6 +- .../assign-mapping-rule-to-tenant.api.mdx | 6 +- .../specifications/create-deployment.api.mdx | 281 +++++++----------- .../specifications/create-documents.api.mdx | 8 +- .../create-mapping-rule.api.mdx | 39 +-- .../specifications/find-users.api.mdx | 7 +- .../get-flow-node-instance.api.mdx | 6 +- .../get-start-process-form.api.mdx | 6 +- .../specifications/get-tenant.api.mdx | 8 +- .../remove-group-from-tenant.api.mdx | 6 +- .../remove-mapping-rule-from-tenant.api.mdx | 6 +- .../remove-user-from-tenant.api.mdx | 4 +- .../specifications/search-tenants.api.mdx | 8 +- .../search-users-for-tenant.api.mdx | 163 +--------- .../specifications/sidebar.ts | 8 +- .../specifications/update-tenant.api.mdx | 6 +- 17 files changed, 182 insertions(+), 590 deletions(-) diff --git a/api/camunda/camunda-openapi.yaml b/api/camunda/camunda-openapi.yaml index c6a0a1b3962..d97b7a0851b 100644 --- a/api/camunda/camunda-openapi.yaml +++ b/api/camunda/camunda-openapi.yaml @@ -400,7 +400,7 @@ paths: $ref: "#/components/schemas/ProblemDetail" "500": $ref: "#/components/responses/InternalServerError" - patch: + put: tags: - Tenant operationId: updateTenant @@ -521,8 +521,7 @@ paths: required: true description: The unique identifier of the user. schema: - type: integer - format: int64 + type: string responses: "202": description: The user was successfully removed from the tenant. @@ -543,7 +542,6 @@ paths: post: tags: - Tenant - - User operationId: searchUsersForTenant summary: Query users for tenant description: Retrieves a filtered and sorted list of users for a specified tenant. @@ -567,14 +565,8 @@ paths: application/json: schema: $ref: "#/components/schemas/UserSearchResult" - application/vnd.camunda.api.keys.number+json: - schema: - $ref: "#/components/schemas/UserSearchResult" - application/vnd.camunda.api.keys.string+json: - schema: - $ref: "#/components/schemas/UserSearchResult" - /tenants/{tenantKey}/mapping-rules/{mappingKey}: + /tenants/{tenantId}/mapping-rules/{mappingKey}: put: tags: - Tenant @@ -582,7 +574,7 @@ paths: summary: Assign a mapping rule to a tenant description: Assign a single mapping rule to a specified tenant. parameters: - - name: tenantKey + - name: tenantId in: path required: true description: The unique identifier of the tenant. @@ -618,7 +610,7 @@ paths: summary: Remove a mapping rule from a tenant description: Removes a single mapping rule from a specified tenant without deleting the rule. parameters: - - name: tenantKey + - name: tenantId in: path required: true description: The unique identifier of the tenant. @@ -647,7 +639,7 @@ paths: "500": $ref: "#/components/responses/InternalServerError" - /tenants/{tenantKey}/groups/{groupKey}: + /tenants/{tenantId}/groups/{groupKey}: put: tags: - Tenant @@ -655,7 +647,7 @@ paths: summary: Assign a group to a tenant description: Assign a single group to a specified tenant. parameters: - - name: tenantKey + - name: tenantId in: path required: true description: The unique identifier of the tenant. @@ -691,7 +683,7 @@ paths: summary: Remove a group from a tenant description: Removes a single group from a specified tenant without deleting the group. parameters: - - name: tenantKey + - name: tenantId in: path required: true description: The unique identifier of the tenant. @@ -1300,7 +1292,7 @@ paths: "500": $ref: "#/components/responses/InternalServerError" - /process-definitions/{processDefinitionsKey}/form: + /process-definitions/{processDefinitionKey}/form: get: tags: - Process definition @@ -1311,7 +1303,7 @@ paths: Note that this endpoint will only return linked forms. This endpoint does not support embedded forms. parameters: - - name: processDefinitionsKey + - name: processDefinitionKey in: path required: true description: The process key. @@ -1610,7 +1602,7 @@ paths: "500": $ref: "#/components/responses/InternalServerError" - /flownode-instances/{flownodeInstanceKey}: + /flownode-instances/{flowNodeInstanceKey}: get: tags: - Flow node instance @@ -1619,7 +1611,7 @@ paths: description: | Returns flow node instance as JSON. parameters: - - name: flownodeInstanceKey + - name: flowNodeInstanceKey in: path required: true description: The assigned key of the flow node instance, which acts as a unique identifier for this flow node instance. @@ -2730,7 +2722,7 @@ paths: The caller must provide a file name for each document, which will be used in case of a multi-status response to identify which documents failed to upload. The file name can be provided in the `Content-Disposition` header - of the file part or in the `filename` field of the metadata part. If both are provided, the `filename` field + of the file part or in the `fileName` field of the metadata part. If both are provided, the `fileName` field takes precedence. In case of a multi-status response, the response body will contain a list of `DocumentBatchProblemDetail` objects, @@ -3426,11 +3418,6 @@ components: tenantKey: type: string description: The unique system-generated internal tenant ID. - assignedMemberKeys: - type: array - description: The set of keys of members assigned to the tenant. - items: - type: string TenantSearchQuerySortRequest: type: object properties: @@ -5194,10 +5181,6 @@ components: UserResult: type: "object" properties: - id: - description: The ID of the user. - type: "integer" - format: "int64" username: description: The username of the user. type: "string" @@ -5421,7 +5404,7 @@ components: - claimValue - name - id - MappingRuleCreateResponseBase: + MappingRuleCreateResult: type: object properties: claimName: @@ -5436,20 +5419,6 @@ components: id: type: string description: The unique external id of the mapping. - MappingRuleCreateResponse: - type: object - allOf: - - $ref: "#/components/schemas/MappingRuleCreateResponseBase" - properties: - mappingKey: - description: The key of the created mapping rule. - type: integer - format: int64 - MappingRuleCreateResult: - type: object - allOf: - - $ref: "#/components/schemas/MappingRuleCreateResponseBase" - properties: mappingKey: description: The key of the created mapping rule. type: string @@ -6545,7 +6514,7 @@ components: DocumentCreationFailureDetail: type: object properties: - filename: + fileName: type: string description: The name of the file. detail: @@ -6616,33 +6585,12 @@ components: format: date-time description: The date and time when the link expires. - DeploymentResponseBase: - description: Base properties for DeploymentResponse. + DeploymentResult: type: object properties: tenantId: description: The tenant ID associated with the deployment. type: string - DeploymentResponse: - deprecated: true - type: object - allOf: - - $ref: "#/components/schemas/DeploymentResponseBase" - properties: - deploymentKey: - type: integer - format: int64 - description: The unique key identifying the deployment. - deployments: - description: Items deployed by the request. - type: array - items: - $ref: "#/components/schemas/DeploymentMetadata" - DeploymentResult: - type: object - allOf: - - $ref: "#/components/schemas/DeploymentResponseBase" - properties: deploymentKey: type: string description: The unique key identifying the deployment. @@ -6664,21 +6612,8 @@ components: $ref: "#/components/schemas/DeploymentFormResult" resource: $ref: "#/components/schemas/DeploymentResourceResult" - DeploymentMetadata: - type: object - properties: - processDefinition: - $ref: "#/components/schemas/DeploymentProcess" - decisionDefinition: - $ref: "#/components/schemas/DeploymentDecision" - decisionRequirements: - $ref: "#/components/schemas/DeploymentDecisionRequirements" - form: - $ref: "#/components/schemas/DeploymentForm" - resource: - $ref: "#/components/schemas/DeploymentResource" - DeploymentProcessBase: - description: Base properties for DeploymentProcess. + DeploymentProcessResult: + description: A deployed process. type: object properties: processDefinitionId: @@ -6696,27 +6631,11 @@ components: tenantId: type: string description: The tenant ID of the deployed process. - DeploymentProcess: - description: A deployed process. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentProcessBase" - properties: - processDefinitionKey: - type: integer - format: int64 - description: The assigned key, which acts as a unique identifier for this process. - DeploymentProcessResult: - description: A deployed process. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentProcessBase" - properties: processDefinitionKey: type: string description: The assigned key, which acts as a unique identifier for this process. - DeploymentDecisionBase: - description: Base properties for DeploymentDecision. + DeploymentDecisionResult: + description: A deployed decision. type: object properties: decisionDefinitionId: @@ -6738,28 +6657,6 @@ components: type: string description: | The dmn ID of the decision requirements graph that this decision is part of, as parsed during deployment. - DeploymentDecision: - description: A deployed decision. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentDecisionBase" - properties: - decisionDefinitionKey: - type: integer - format: int64 - description: | - The assigned decision key, which acts as a unique identifier for this decision. - decisionRequirementsKey: - type: integer - format: int64 - description: | - The assigned key of the decision requirements graph that this decision is part of. - DeploymentDecisionResult: - description: A deployed decision. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentDecisionBase" - properties: decisionDefinitionKey: type: string description: | @@ -6768,8 +6665,8 @@ components: type: string description: | The assigned key of the decision requirements graph that this decision is part of. - DeploymentDecisionRequirementsBase: - description: Base properties for DeploymentDecisionRequirements. + DeploymentDecisionRequirementsResult: + description: Deployed decision requirements. type: object properties: decisionRequirementsId: @@ -6789,29 +6686,12 @@ components: resourceName: type: string description: The resource name from which this decision requirements was parsed. - DeploymentDecisionRequirements: - description: Deployed decision requirements. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentDecisionRequirementsBase" - properties: - decisionRequirementsKey: - type: integer - format: int64 - description: | - The assigned decision requirements key, which acts as a unique identifier for this decision requirements. - DeploymentDecisionRequirementsResult: - description: Deployed decision requirements. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentDecisionRequirementsBase" - properties: decisionRequirementsKey: type: string description: | The assigned decision requirements key, which acts as a unique identifier for this decision requirements. - DeploymentFormBase: - description: Base properties for DeploymentForm. + DeploymentFormResult: + description: A deployed form. type: object properties: formId: @@ -6829,27 +6709,11 @@ components: tenantId: type: string description: The tenant ID of the deployed form. - DeploymentForm: - description: A deployed form. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentFormBase" - properties: - formKey: - type: integer - format: int64 - description: The assigned key, which acts as a unique identifier for this form. - DeploymentFormResult: - description: A deployed form. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentFormBase" - properties: formKey: type: string description: The assigned key, which acts as a unique identifier for this form. - DeploymentResourceBase: - description: Base properties for DeploymentResource. + DeploymentResourceResult: + description: A deployed Resource. type: object properties: resourceId: @@ -6867,22 +6731,6 @@ components: tenantId: type: string description: The tenant ID of the deployed form. - DeploymentResource: - description: A deployed Resource. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentResourceBase" - properties: - resourceKey: - type: integer - format: int64 - description: The assigned key, which acts as a unique identifier for this Resource. - DeploymentResourceResult: - description: A deployed Resource. - type: object - allOf: - - $ref: "#/components/schemas/DeploymentResourceBase" - properties: resourceKey: type: string description: The assigned key, which acts as a unique identifier for this Resource. diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx index 2e6feceecc9..d2a067d2441 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx @@ -5,7 +5,7 @@ description: "Assign a single group to a specified tenant." sidebar_label: "Assign a group to a tenant" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/Ss7OCVTWpQTJ3V50zhO6jbxeGy5Pbg+gORKRAICND4sazj8750FSFmW5Nbt+KiDhiKw2IfFvgcQ2zLH55ZlN2yKiivHbhOmGzTcCa3OSpYxbq2Yqy9G+2aqe6OElWgLIxqyYhmbBBvgYIWaS4Q5WYPT1NJgIWYCS3Bh7IglrOGG1+jQEHDLFK+RZSz2/45LljBBXhvuKpYwg3deGCxZ5ozHTehpheCVuPMIokTlCMuAnoGrcA3SFhXWnGUtc8uG0KwzQs1Z1yWrCYRZvyp+8LgTXiiHczQsYTNtau5i08cj1nW3BGkbrSxaGvFu/I4e27BxlRfcgvVFgdbOvJRLiAmjBddPFqFL2NF4vNtVY/S9KLGEkjsOwoLSDu65FCXNvtDKoXI0lDeNFEVgR9oYnUusf/puyU+7FuQGO+AiWkKJjgsJOv+OhQNuIRrmWIJQcHP5+QR+Ofrw8+2byrnGZmm6WCxGZlYcYCmcNiNt5qmZFfQju7cjmFZoEGq+hByBl6UgTC4poAaNE2gHBhbDevTTBsrE6C/FkiEncVrEz9Xgx4xtEmctcd6IbUXA9eXZwIilUPNt6DBmxr0kHzzX3mW55OoHJcoJJ3eCbqJYX9fcLAfCPQXoEmYdd97+K/Hev9vyTbT4dTq9gOgCCl0izLQBVwk7AFEQtVCi9jXLjsbjhNX8Ib59HI878kkZf0EkCvChkVwFam2GIxTU2mDPnxCYUNZxVbxWZrQRc7GJO6LtYcgF60n8KUbUdV0Q1Pttvn/WJhdliSrQE2j/QOsGVXEp9QL3utrraq+rf9DV0Tbfz7WDmfaqjLqK5xpos3YQqpXJXl57ee3l9Yy8Puz6DpwooFU2xEM0RhvQReGNwRIWlZDBPX1lDtj9uRa5uNfaXmt7rW1rrUtYja7SdJNufGAO3Sozlsbjy6bt6t7bpeEgs2k73EQ7ujqiuR9uyt5IlrE2qqjL0rSttHVd1jbauC69pxTdcyN4LiMxqTuqbWCR1AWXoXlXNqmDbsNDlCe89qrkcAyXp1dT+MIdLvgyrC5BPnV9PD4e7/RKps94nFycQYwwcnFtfxjcktB3uo3GL3EcLtUWC2+EW17RsLg8OXKDZuIpIyuO9HjBO71HI5b0fz4PzPntz2lIvlAzHYb3JNieCGUFjY0zH48Otwl3cRZ0U+i69ipsnmoOC+Eq4GuBFdJbRwElTIoClQ3U7qsXg9nX2AN/REQ4HFFSInOGPXMuXOXzUaHrtIjDVs9c6jytuVBpD2HTk8m36/NPk4OvZyen51enB4ej8cg9uBB8o62ruVqbx6oWtFYEcjvLRu3jqfFfK0h9qhw+uLSRXCgiT4ix7QV209eTLEtYtl5aihqj1lW95zbphXLD2jbnFq+N7DpqvvNoliy7uX3UVRBiKSz9L1k249JuFoXWA3tz2ZeP3sILS1U7Y+sbuVoGiUtPbyxhP3D5pHRG5azXn9yqjvU/5rZa5e62S1iFvEQT1jB2T4oCG7c28NnPB9Lwai+9uCbx/Q3twyPs +api: eJztWE1z2zYQ/Ss7OCVTWpQdJ0150zh26jbxeGy5Pbg6gORKRAICND4sazj8750FSEWRlNbt+KiDhiKw2IfFvgcQ2zLHF5Zl92yKiivHZgnTDRruhFaXJcsYt1Ys1EejfTPVvVHCSrSFEQ1ZsYxNgg1wsEItJMKCrMFpammwEHOBJbgwdsQS1nDDa3RoCLhlitfIMhb7L0uWMEFOG+4qljCDD14YLFnmjMdt5GmF4JV48AiiROUIyoCeg6twA9EWFdacZS1zq4bArDNCLVjXJWv8MOnfcfVy+MHjXnihHC7QsITNtam5i03vTlnXzQjSNlpZtDTiZHxCj13YuMhLbsH6okBr517KFcR80Xrr7xahS9jpeLzfVWP0oyixhJI7DsKC0g4euRQlzb7QyqFyNJQ3jRRFIEfaGJ1LrH/6YslPuxHkFjngOlpCiY4LCTr/goUDbiEa5liCUHB/c3EGv5y+/Xn2qnKusVmaLpfLkZkXR1gKp81Im0Vq5gX9yO71CKYVGoSaryBH4GUpCJNLCqhB4wTagYDFsB79tIEyMfpLsWTISZwW0XM9+FvGtomzkThvxK4g4O7mcmDESqjFLnQYM+dekg+ea++yXHL1lRLlhJN7QbdRrK9rblYD4b4H6BJmHXfe/ivx3pzs+CZa/DqdXkN0AYUuEebagKuEHYAoiFooUfuaZafjccJq/hTf3o3HHfmkjD8jEgX41EiuArW2wxEKam2w508ITCjruCpeKjPaiIXYxh3R9jDkgvUk/hAj6rouCOrNLt8vtMlFWaIK9ATaP9C6QVVcSr3Eg64Oujro6h90dbrL9yvtYK69KqOu4rkG2mwchGptcpDXQV4Hef1AXm/3fQdOFNAqG+IhGqMN6KLwxmAJy0rI4J6+Mgfs/lyLXDxo7aC1g9Z2tdYlrEZXabpINz4wh26VGUvj8WXTdrj2dmk4x2zaDhfRjm6OaB6He7I3kmWsjSLqsjRtK21dl7WNNq5LHylDj9wInsvIS+qOYhtIJHXBZWjel0zqoMvwEOQZr70qObyHm/PbKXzkDpd8FRaXIL93/X78frzXK5n+wOPk+hJihJGKG9vD4JZ0vtdtNH6O43Cntlh4I9zqlobF5cmRGzQTTwlZU6THC97pPRqxpP9zMRDntz+nIfdCzXUY3nNgdyKUFTQ2znw8Ot7l2/VlkE2h69qrsHeqBSyFq4BvBFZIbx0FlDApClQ2MLsvXgxmn2IP/BER4XhESYnMGbbMhXCVz0eFrtMiDls/c6nztOZCpT2ETc8mn++uPkyOPl2enV/dnh8dj8Yj9+RC8I22ruZqYx7rStBGCcjtLRq13w6N/1o/6lPl8MmljeRCEXlCjG2vr/u+mmRZwrKNwlKUGDWuqz2zpNfJPWvbnFu8M7LrqPnBo1mx7H72TVZBh6Ww9L9k2ZxLu10S2ozr1U1fPHoNzyxU7Q2tb+RqFRQuPb2xhH3F1WbdjGpZLz+3dRHrf0xtvcjdrEtYhbxEE5Ywdk+KAhu3MfCH3w6k4PVGen1H0vsbZZsh/A== sidebar_class_name: "put api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -28,7 +28,7 @@ import Heading from "@theme/Heading"; @@ -44,7 +44,7 @@ Assign a single group to a specified tenant. @@ -44,7 +44,7 @@ Assign a single mapping rule to a specified tenant. @@ -44,7 +44,7 @@ Returns flow node instance as JSON. @@ -46,7 +46,7 @@ Note that this endpoint will only return linked forms. This endpoint does not su @@ -44,7 +44,7 @@ Removes a single group from a specified tenant without deleting the group. @@ -44,7 +44,7 @@ Removes a single mapping rule from a specified tenant without deleting the rule. diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx index b3b1fd89521..6cc6489a538 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a filtered and sorted list of tenants." sidebar_label: "Query tenants" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -222,12 +222,6 @@ Retrieves a filtered and sorted list of tenants. description: "The unique system-generated internal tenant ID.", }, - assignedMemberKeys: { - type: "array", - description: - "The set of keys of members assigned to the tenant.", - items: { type: "string" }, - }, }, title: "TenantResult", }, diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-users-for-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-users-for-tenant.api.mdx index 0ea6a833a39..7744882f579 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-users-for-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-users-for-tenant.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a filtered and sorted list of users for a specified tena sidebar_label: "Query users for tenant" hide_title: true hide_table_of_contents: true -api: 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 +api: eJzdWN1v2zYQ/1cIPm2AYjndMBR6c91kyNC1WZx0D0aA0NLZYkuRKkklMQT978OR1IdtOXOL7GV+kSUe7/t+d2RNLdsYmizpLUgmLb2PqCpBM8uVvMpoQg0wneZ3BrS5VDpQRTQDk2peIhlN6A1YzeERDGFkzYUFDRlhMiNGaQsZEdxYotakQjZkrTRhxJSQ8jWHjFjHdEIjWjLNCrCgUaWaSlYATahfv8poRDlKK5nNaUQ1fKu4howmVlewr9JtDqSS/FsFhGcgLYrSqIPNYSDRpDkUjCY1tdsShRmrudzQprn3EsDYdyrbIkUvcM2EgYimSlqQFtdYWQqeOrfFXwxqUA94MyE+rZ1JQYpafYEU/VhqdLflYJCuZBvA564p12zDpWNNUs0taM5Q9VOZrrUqDpmif7jM4Bl9wi0UhlhFjGXaEh9zLjcE96KsIIFLCxvQNKJrpQtm/adf3tAmooIX3I7LKdgzL6qCyKpY+SB0AjXYSkvCJVESSHD4KRIx3mtWCUuT8+m0iUKiztYW9KEWV52BjoowJJuQudIaBLPg1jAzHgQzdqG0/cxEBeaBBF9uUWtGSg2PXFWm5aPBlEoaGGjMtGZbTFUUOUisEJ2mU/UdrJUeCfe+ritHN6rsmuv/WtsmopZbgd8WjstfFejtNdvAjQ8WxUo5tHFk0/EN+ymLsHHoGDSUrDmIbKcOTrPkoCqQz3i6ehEYABS42g6EBHSIKMiqQNhERHMwFdHwgIJxQe+biCqdjeUiinBLmPVPOU/zThYG1cc481q8JHq2mNOIvr9YzBG1u2oI3zv/K20/obQL3IaR6WFsGbxw35Mj0A9Chru7sDUR9eA+bhO6os00T2d2YWp3y90B+cDYI0HrvH1UAVxtUR7fDx3YhEiNsjhpu4/w6H639C8Mml1vXzrb+9rYXx8roMbH0Vez88yb6XRco770K7HXg3c74cnNbD9Er9bcuPQYj//ZSlW+HnYMeDGjfoDVyxpbZZm4avFkz7e4FvpYwaxvlyhkBJrGm9hvv1JXUTsQfiSICA6PjqBNLrfPyUcY8cDhQmzATsidAWJzbtq1h2HLeQgIhz1CEpCmQt0Pe+8JnWy3W56sPG77Xt1dZ3811V9qa76s9kpxpww7iv2M4UeSxQ1BIUlcAf544/pfYGBEv8J2fPtX2H4fgN643NmNaQ+c/SquF2BzhceaUhnnWjxKJDT2MGjiuj1rNLELU+xzDw8KoB/bc0mlBU1o7SGxSeK4zpWxTVKXStsmfsTp9JFpzlbCxwyXvbVtkxYqZSL3Shz6ABeGYZizopIZI2/JzcXilvzOLDyx7QT9WHajUsv67fTtdJQrkh7hOLu+It5Cx7QH+55tbm05ytYTn8LYHaoMpJXmdrvAbd49K2Aa9KzCWHTpH+Q57vjuiWgU/ly2SPrH37cuJbBR3fQHtotnVpQC+mly2c18w6EtzGhuaELt+gGnr7N+9Np/D1UwSOu2yflD17Q7Fp1Pp3tHlGXtvTE8CuA3tAXbl3NFSOdDp2KGgTY+CtPJ+UFk0PHY5FNVFJV03VxuyBO3OWGDIKWiMmH0EjwFRLWkO3i3ZB/8CvnsJZLzCSaYrwIMk0nieMNtXq0mqSri1G/rniuhVnHBuIyDCBPPZ3/efXw/O/twNb/4uLg4O59MJ/bZ9xQszYLJgR4OdYeDy+gtRN2PMK92IRFy0cKzjUvBuMQYO8PrgB3LcD1haESTwU2F40zbAOOI7UFgSet6xQzcadE0+PkbGkeT5X2PGX624Qb/97cNR4396SZM9D+TE289Rs1q25HcOvgSFb7RgNT9JUyDR5scWOaTOCzPvTZnt8ik334wSTZRu2OWplDaF2nvB4B9/Wlxi8Uf7mIKleEezZ7wJog9eVWV847DFPetpoLJTeVqknqe+PsH5yCRsA== sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -219,167 +219,6 @@ Retrieves a filtered and sorted list of users for a specified tenant. items: { type: "object", properties: { - id: { - description: "The ID of the user.", - type: "integer", - format: "int64", - }, - username: { - description: "The username of the user.", - type: "string", - }, - name: { - description: "The name of the user.", - type: "string", - }, - email: { - description: "The email of the user.", - type: "string", - }, - key: { - description: "The key of the user.", - type: "string", - }, - }, - title: "UserResult", - }, - }, - }, - title: "UserSearchResult", - }, - }, - "application/vnd.camunda.api.keys.number+json": { - schema: { - type: "object", - allOf: [ - { - type: "object", - properties: { - page: { - description: - "Pagination information about the search results.", - allOf: [ - { - description: - "Pagination information about the search results.", - type: "object", - properties: { - totalItems: { - description: "Total items matching the criteria.", - type: "integer", - format: "int64", - }, - firstSortValues: { - description: - "The sort values of the first item in the result set. Use this in the `searchBefore` field of an ensuing request.", - type: "array", - items: { type: "object" }, - }, - lastSortValues: { - description: - "The sort values of the last item in the result set. Use this in the `searchAfter` field of an ensuing request.", - type: "array", - items: { type: "object" }, - }, - }, - title: "SearchQueryPageResponse", - }, - ], - }, - }, - title: "SearchQueryResponse", - }, - ], - properties: { - items: { - description: "The matching users.", - type: "array", - items: { - type: "object", - properties: { - id: { - description: "The ID of the user.", - type: "integer", - format: "int64", - }, - username: { - description: "The username of the user.", - type: "string", - }, - name: { - description: "The name of the user.", - type: "string", - }, - email: { - description: "The email of the user.", - type: "string", - }, - key: { - description: "The key of the user.", - type: "string", - }, - }, - title: "UserResult", - }, - }, - }, - title: "UserSearchResult", - }, - }, - "application/vnd.camunda.api.keys.string+json": { - schema: { - type: "object", - allOf: [ - { - type: "object", - properties: { - page: { - description: - "Pagination information about the search results.", - allOf: [ - { - description: - "Pagination information about the search results.", - type: "object", - properties: { - totalItems: { - description: "Total items matching the criteria.", - type: "integer", - format: "int64", - }, - firstSortValues: { - description: - "The sort values of the first item in the result set. Use this in the `searchBefore` field of an ensuing request.", - type: "array", - items: { type: "object" }, - }, - lastSortValues: { - description: - "The sort values of the last item in the result set. Use this in the `searchAfter` field of an ensuing request.", - type: "array", - items: { type: "object" }, - }, - }, - title: "SearchQueryPageResponse", - }, - ], - }, - }, - title: "SearchQueryResponse", - }, - ], - properties: { - items: { - description: "The matching users.", - type: "array", - items: { - type: "object", - properties: { - id: { - description: "The ID of the user.", - type: "integer", - format: "int64", - }, username: { description: "The username of the user.", type: "string", diff --git a/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts b/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts index 10a7063811e..1e197da0834 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts +++ b/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts @@ -548,7 +548,7 @@ const sidebar: SidebarsConfig = { type: "doc", id: "apis-tools/camunda-api-rest/specifications/update-tenant", label: "Update tenant", - className: "api-method patch", + className: "api-method put", }, { type: "doc", @@ -610,12 +610,6 @@ const sidebar: SidebarsConfig = { type: "category", label: "User", items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/search-users-for-tenant", - label: "Query users for tenant", - className: "api-method post", - }, { type: "doc", id: "apis-tools/camunda-api-rest/specifications/create-user", diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx index e9383395bbc..d95f0df04c7 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx @@ -5,8 +5,8 @@ description: "Updates an existing tenant." sidebar_label: "Update tenant" hide_title: true hide_table_of_contents: true -api: eJztWF1v2zYU/SsEn1pMsdw23Tq9eWm6emuLIHW2h8wPV+K1xZYiVZKKYxj678MlpVixnTQF+ugAgWXx8n6dcyj5briHpePZNZ+hBu35POGmRgteGj0VPONNLcBjt5pwga6wsqZlnvGrsOgYaIa30nmpl8wH0xFPeA0WKvRoKcCGa6iQZzyuTwVPuCQfNfiSJ9zit0ZaFDzztsHdQLMSWaPltwaZFKi9XEi0zCyYL3EQ0RUlVsCzDffrmoI5b6Ve8radxwjo/B9GrMmiMNqj9nQJda1kEWpOvzgKuNl3ZfIvWFALaksd8hIdrcaqdgMeyl/jipH1btrtjvFTfQ3u7rlshw29jkne9zNPuJdeUZwIbsTyMjaJt/ddECbhhquNdrHyl+MxfewnF7NgK3Asskcw1xQFOrdolFoTUD+p+XdcelLTOgLhrUerQfV5Tt8SBD+A40/C8DH8kq60v3H9Q7W5tfNYnSxRk4ZRMKl3i43sOIy9a1SAvk346UPo1tbcSIGCCfDApGPaeHYDSopHgK2tyRVWv+wDfD/AhF1ESybQg1QsAs/Ade3KQ03s+vLdGfv99PVv82el97XL0nS1Wo3sojhBIb2xI2OXqV0U9E92z0dsVqJFVsGa5chACEkxQbEtpZirsZALWTBvAh5d2oz6P/pP8+R7fAyr+3gtjK3A02lq5R58E3Z1Oe2PtXU4QndDhz0LIHQyDrlpfJYr0F/5FsnvkWTCXFNVYNc91+4HaBPuPPhmUAYn7izRDvOX2r96eZCA72ezCxZdsMIIZAtjmS+l6wNREZXUsmoqnp2Oxwmv4DZ++3U8DgIixJ9QCT1sagUahtLpy5GaVcZix59QmNTOgy5+FjLGyqXcjXtfVR2J38aKekG92uf7O2NzKQTqQE/WPaJ6VYFSZoVHXR11ddTVI7o63ef7J+PZwjRaRF0N3kj03cpRVUdVHVX1gKpeH3r9m+jt+yRaaywzRdFYi4KtSqmCe3rN72N3j7PIxaPWjlo7am1fa23CK/SlEXEWUpRhcuJLnvE0Prdcuul/6LY05EB7089UGqt4xjdRNG2WppvSON9mm9pY36Y3hMgNWAm5ijyk5SiunjTKFKDC7UPg0cLwB+8ZVI0WwN6wy/PPM/YneFzBOjSTQt53/Wb8ZnzQK5k+4HFyMWWxwki9wXHQuyVdH3QbjZ/iOAyEHBaNlX79mbbF9uQIFu2kofbfUaKLF7zT92jEk+7iXU+Uv/6dBazpKLvcDpvOb6GqoxC7EdgD9O2HVcTLhQkJdKzZL4VwRevixvHoxT5DL6ZBaIWpqkaH01Yv2Ur6ksGgNYVqnKeWJFzJArUb5tmbfYgr7J8Ykb0YEayRe/0hu5S+bPJRYaq0iNvuPnNl8rQCqdMuhEvPJh+vPr2dnHyYnp1/+nx+8mI0HvlbH9pXG+cr0IM84niie4vbrXQwyfvOPLKD0+OtT2sFUlOrQxWbTnHX3djF8YRnd8OledLJ5ppvNjk4vLKqben2twbtmmfX863KgiyFdHQteLYA5XanmcOMn112M7bn7IkzzoNVdDdBr4PgVUPfeMK/0vxoOyZr523CSwSBNuQZl89iNiczcrLdvjeYa5N+x6QosPaP2s4Hx9rFZHb2nvTSjV4rI2iThRUNfmEVczWhPUGG4d6GK9DLBpZkG53S3/+3OtWi -sidebar_class_name: "patch api-method" +api: eJztWF1v2zYU/SsEn1pMsdw23Tq9eWm6eeuCIHW2h8wPV+K1xZYiVZKKYxj678MlpVixnTQF+ugAgWXx8n6dcyj5briHpePZDZ+hBu35POGmRgteGj0VPONNLcBjt5pwga6wsqZlnvHrsOgYaIZ30nmpl8wH0xFPeA0WKvRoKcCGa6iQZzyuTwVPuCQfNfiSJ9zi10ZaFDzztsHdQLMSWaPl1waZFKi9XEi0zCyYL3EQ0RUlVsCzDffrmoI5b6Ve8radxwjo/G9GrMmiMNqj9nQJda1kEWpOPzsKuNl3ZfLPWFALaksd8hIdrcaqdgMeyl/jipH1btrtjvFzfQ3u7rlshw29iUk+9DNPuJdeUZwIbsTyKjaJtw9dECbhhquNdrHy1+MxfewnF7NgK3Asskcw1xQFOrdolFoTUD+o+fdcelbTOgLhnUerQfV5Tt8TBN+B4w/C8Cn8kq60v3D9XbW5tfNYnSxRk4ZRMKl3i43sOIy9a1SAvk346WPo1tbcSoGCCfDApGPaeHYLSoongK2tyRVWP+0D/DDAhF1GSybQg1QsAs/Ade3KQ03s5urDGfv19O0v8xel97XL0nS1Wo3sojhBIb2xI2OXqV0U9E92L0dsVqJFVsGa5chACEkxQbEtpZirsZALWTBvAh5d2oz6P/pP8+RbfAyr+3gtjK3A02lq5R58E3Z9Ne2PtXU4QndDhz0LIHQyDrlpfJYr0F/4FslvkWTCXFNVYNc91x4GaBPuPPhmUAYn7izRDvOX2r95fZCAf8xmlyy6YIURyBbGMl9K1weiIiqpZdVUPDsdjxNewV389vN4HAREiD+jEnrY1Ao0DKXTlyM1q4zFjj+hMKmdB138KGSMlUu5G/ehqjoSv48V9YJ6s8/3D8bmUgjUgZ6se0T1qgKlzAqPujrq6qirJ3R1us/3C+PZwjRaRF0N3kj0/cpRVUdVHVX1iKreHnr9m+jt+yRaaywzRdFYi4KtSqmCe3rN72N3j7PIxaPWjlo7am1fa23CK/SloWFL3QTm0EQk42l8arl00//MbWnEgfa2n6g0VvGMb6Jk2ixNN6Vxvs02tbG+TW8Jj1uwEnIVWUjLUVo9ZZQpQIXbh6CjheHP3TOoGi2AvWNX559m7HfwuIJ1aCWFfOj63fjd+KBXMn3E4+RyymKFkXiDw6B3S6o+6DYaP8dxGAc5LBor/foTbYvtyREs2klD7b8nRBcveKfv0Ygn3cWHniZ//jsLSNNBdrUdNZ3fQVVHGXYDsEfI24+qiJULExLoOLNfCuGK1sWN49GrfX5eToPMClNVjQ5nrV6ylfQlg0FrCtU4Ty1JuJIFajfMszf7GFfYPzEiezUiWCP3+iN2KX3Z5KPCVGkRt91/5srkaQVSp10Il55N/r6+eD85+Tg9O7/4dH7yajQe+Tsf2lcb5yvQgzzicKJ7h9utdDDH+8Y0soPT451PawVSU6tDFZtOcTfd0MXxhGf3o6V50snmhm82OTi8tqpt6fbXBu2aZzfzrcqCLIV0dC14tgDldmeZw4xfXHUTtpfsmRPOg1V0N0Gvg+BVQ994wr/Q9Gg7JGvnbcJLBIE25BmXz2I2JzNyst2+N5Zrk37HpCiw9k/azgeH2uX1jNTSjV0rI2iLhRUNfWEVMzWhOUGE4d6GK9DLBpZkG13S3/8+etR0 +sidebar_class_name: "put api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true @@ -27,7 +27,7 @@ import Heading from "@theme/Heading"; >