openapi: 3.0.2 x-explorer-enabled: false x-samples-languages: - curl - node - java - javascript - python - go info: title: Admin - Group description: Group management APIs are used to create the group of different resources like user. contact: name: Avaya API Team url: https://developers.avayacloud.com/onecloud-ccaas email: apiteam@avaya.com license: name: Avaya Software Development Kit (SDK) Software License Terms url: http://support.avaya.com/css/P8/documents/101038288 version: 1.0.1 security: - {} - BearerAuth: [] AppKey: [] servers: - url: '{protocol}://{server}{basePath}' description: Open API variables: protocol: enum: - https default: https server: default: HOST-REGION.api.avayacloud.com basePath: default: /api/admin/group/v1 tags: - name: Audit Records description: 'Search or export audit records for auditable objects ' - name: Group Management description: 'A Group is a logical collection of the resources like e.g. user. These groups can be assigned to a user to grant access to the resources present in the group. ' paths: /accounts/{accountId}/audit-records:search: post: tags: - Audit Records summary: Search Audit Records description: '**This API requires the Account Administrator role.** Searches the audit records based on the supplied filter. The value of **searchKeyword** can be used to perform a text search across all fields within an audit record (excluding date). ' operationId: searchAuditRecords parameters: - $ref: '#/components/parameters/accountId' - $ref: '#/components/parameters/pageNumber' - name: pageSize in: query description: 'The max number of records to retrieve per page. Default value is 5, max value is 50. ' required: false schema: type: integer format: int32 example: 5 default: 5 minimum: 5 maximum: 50 - name: orderBy in: query description: 'Field name on which sorting needs to be performed. The possible fields you ordered on are **date (date of audit record)** and **author**. Field Names are case-sensitive (should be written as it is in description). The default sorting order is descending. To specify ascending order, a suffix " asc" should be added. For example, "date asc" for ascending or "date desc" for descending". ' required: false schema: type: string minLength: 4 maxLength: 23 example: date desc requestBody: content: application/json: schema: $ref: '#/components/schemas/AuditSearchFilter' examples: Search-Audit-Records: $ref: '#/components/examples/SearchAuditRecordsRequest' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/AuditRecords' examples: Search-Audit-Records: $ref: '#/components/examples/GroupSearchAuditRecordsResponse' '400': $ref: '#/components/responses/ErrorConstraintViolation' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '500': $ref: '#/components/responses/InternalServerError' /accounts/{accountId}/audit-records:export: post: tags: - Audit Records summary: Export Audit Records description: '**This API requires the Account Administrator role.** Exports the audit records within the date-time range in CSV format. A maximum of 1000 records can be exported for a given date-time range per request. If the number of records within a date-time range exceeds the maximum then this API will return a _HTTP 400 Bad Request_. This response will contain: * A human readable message explaining the issue. * A unique error code that a client can use to identify the issue. ' operationId: exportAuditRecords parameters: - $ref: '#/components/parameters/accountId' - name: orderBy in: query description: 'Field name on which sorting needs to be performed. The possible fields you ordered on are **date (date of audit record)** and **author**. Field Names are case-sensitive (should be written as it is in description). The default sorting order is descending. To specify ascending order, a suffix " asc" should be added. For example, "date asc" for ascending or "date desc" for descending". ' required: false schema: type: string minLength: 4 maxLength: 23 example: date desc requestBody: content: application/json: schema: $ref: '#/components/schemas/AuditSearchFilter' examples: Export-Audit-Records: $ref: '#/components/examples/SearchAuditRecordsRequest' responses: '200': description: OK content: text/csv: schema: type: string format: binary example: 'Account Id,Date,Event,Author,IP Address,Type,Audit Data ABCDEF,2021-11-14T09:24:05.234Z,CREATED,jsmith@example.com,165.225.72.60,GROUP,"{""groupId"":""rt3e4567-e89b-12d3-a456-556642440000"",""description"":""Credit Card Agent Group"",""name"":""CreditCardAgentGroup"",""resources"":[""type"":""User"",""resourceIds"":[""04703a3a-3dfb-4606-ae79-fd0fe0be3e64""]}" ' '400': description: BadRequest content: application/problem+json: schema: $ref: '#/components/schemas/Problem' examples: Too-many-records: $ref: '#/components/examples/ErrorTooManyRecords' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '500': $ref: '#/components/responses/InternalServerError' /group-types: get: tags: - Group Management summary: Get Group Types description: '**This API requires the Account Administrator role.** Gets the supported group types. ' operationId: getGroupTypes responses: '200': description: OK content: application/json: schema: type: array description: List of group types supported maxItems: 50 items: description: supported group types type: string example: User example: - User '400': $ref: '#/components/responses/ErrorConstraintViolation' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '500': $ref: '#/components/responses/InternalServerError' /accounts/{accountId}/groups: post: tags: - Group Management summary: Create Group description: "**This API requires the Account Administrator role.**\n\nCreates a group.\n\nThe following fields must\ \ be unique otherwise a `HTTP 409 Conflict` will be returned:\n * `name`\n" operationId: createGroup requestBody: content: application/json: schema: $ref: '#/components/schemas/Group' examples: Create-Group: $ref: '#/components/examples/Create-Group' description: Group with properties which needs to be created required: true parameters: - $ref: '#/components/parameters/accountId' responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/Group' examples: Group: $ref: '#/components/examples/Group' '400': $ref: '#/components/responses/ErrorConstraintViolation' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '409': $ref: '#/components/responses/GroupNameConflict' '500': $ref: '#/components/responses/InternalServerError' get: tags: - Group Management summary: List Groups description: '**This API requires the Account Administrator role.** Lists the groups for an account. ' operationId: getGroups parameters: - $ref: '#/components/parameters/accountId' - name: pageNumber in: query description: The page number of the records to retrieve. Default value is 1 required: false schema: type: integer format: int32 example: 30 default: 1 minimum: 1 - name: pageSize in: query description: The max number of records to retrieve per page. Default value is 5,max value is 50. required: false schema: type: integer format: int32 example: 5 default: 5 minimum: 5 maximum: 50 - name: filter in: query required: false description: "Specifies details of a row filter.\n\nThe supported field that you can filter on are:\n * name\n *\ \ organizationNodeId\n * membershipType\n\nThe allowed format:\n- Begins with the column name to be filtered, followed\ \ by a colon, (This will be used as Contains operator.) then:\n - Either an exact string to match, or\n - A string\ \ expression including the * wildcard character.\n - :{PREFIX}* will be used to find out word start with.\n \ \ - :*{POSTFIX} will be used to find out word end with\n - : will be used to match exact word\n- Begin with\ \ column name to be filtered, followed by a = operator. (this will be used to match exact string)\n" schema: type: string maxLength: 255 examples: exact: description: Example of filtering based on an exact string. value: name:Users prefix: description: Example of filtering based on a prefix string. value: name:Users* postfix: description: Example of filtering based on a postfix string. value: name:*Users - name: orderBy in: query required: false description: 'Field name on which sorting needs to be performed. The possible fields you ordered on are: * name Field Names are case-sensitive (should be written as it is in description). The default sorting order is ascending. To specify descending order, a suffix " desc" should be added. For example, "name" for ascending or "name desc" for descending". ' schema: type: string maxLength: 255 examples: ascending: value: name descending: value: name desc responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/GroupPage' examples: List-Groups: $ref: '#/components/examples/GroupsResult' '400': $ref: '#/components/responses/ErrorConstraintViolation' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '500': $ref: '#/components/responses/InternalServerError' /accounts/{accountId}/groups/{groupId}: get: tags: - Group Management summary: Get Group description: '**This API requires the Account Administrator role.** Gets a group by ID. ' operationId: getGroup parameters: - $ref: '#/components/parameters/accountId' - $ref: '#/components/parameters/groupId' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Group' examples: Group: $ref: '#/components/examples/Group' '400': $ref: '#/components/responses/ErrorConstraintViolation' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '500': $ref: '#/components/responses/InternalServerError' put: tags: - Group Management summary: Update Group description: "**This API requires the Account Administrator role.**\n\nUpdates a group.\n\nThe following fields must\ \ be unique otherwise a `HTTP 409 Conflict` will be returned:\n * `name`\n" operationId: updateGroup parameters: - $ref: '#/components/parameters/accountId' - $ref: '#/components/parameters/groupId' requestBody: content: application/json: schema: $ref: '#/components/schemas/Group' examples: GroupsUpdateRequest: $ref: '#/components/examples/GroupsUpdateRequest' description: Group with properties which needs to be updated required: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Group' examples: Group: $ref: '#/components/examples/Group' '400': $ref: '#/components/responses/ErrorConstraintViolation' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '409': $ref: '#/components/responses/GroupNameConflict' '500': $ref: '#/components/responses/InternalServerError' delete: tags: - Group Management summary: Delete Group description: '**This API requires the Account Administrator role.** Deletes a group. ' operationId: deleteGroup parameters: - $ref: '#/components/parameters/accountId' - $ref: '#/components/parameters/groupId' responses: '204': description: No Content '400': $ref: '#/components/responses/ErrorConstraintViolation' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/Not_Found' '500': $ref: '#/components/responses/InternalServerError' components: responses: Unauthorized: description: Unauthorized content: application/problem+json: schema: $ref: '#/components/schemas/Problem' examples: default: $ref: '#/components/examples/UnauthorizedError' Forbidden: description: Forbidden content: application/problem+json: schema: $ref: '#/components/schemas/Problem' examples: default: $ref: '#/components/examples/ForbiddenError' Not_Found: description: Not Found content: application/problem+json: schema: $ref: '#/components/schemas/Problem' examples: default: $ref: '#/components/examples/NotFoundError' InternalServerError: description: All other application errors content: application/problem+json: schema: $ref: '#/components/schemas/Problem' examples: default: $ref: '#/components/examples/ServerError' ErrorConstraintViolation: description: Constraint Violation content: application/problem+json: schema: $ref: '#/components/schemas/Problem' examples: default: $ref: '#/components/examples/ConstraintViolationError' GroupNameConflict: description: Conflict content: application/problem+json: schema: $ref: '#/components/schemas/Problem' examples: name: $ref: '#/components/examples/ErrorGroupNameExists' schemas: Group: type: object description: This model holds the group related data properties: groupId: type: string description: Unique group uuid. example: c8c2909d-75e9-484a-94c0-b7e8d29771fe readOnly: true minLength: 36 maxLength: 36 pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ name: type: string description: Name of the group example: CreditCardAgentGroup minLength: 1 maxLength: 255 pattern: ^[^=:*,]*$ description: type: string description: Description of the group example: Credit Card Agent Group minLength: 0 maxLength: 255 pattern: ^[^<>\^@#]*$ organizationNodeId: type: string example: EXMPLE minLength: 0 maxLength: 6 pattern: ^[a-zA-Z]{0,6}$ description: Unique Id for Account or Node where group get created resources: type: array minItems: 1 maxItems: 50 description: List of group resource items: $ref: '#/components/schemas/GroupResource' GroupResource: type: object description: This is container model for group data properties: type: type: string description: Type of the group example: User minLength: 1 maxLength: 255 pattern: ^[^<>\^@#]*$ resourceIds: type: array maxItems: 500 items: type: string minLength: 36 maxLength: 36 pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ example: - c8c2909d-75e9-484a-94c0-b7e8d29771fe description: Unique Id's of resources which are member of this group required: - type GroupPage: type: object description: This is container model for group list response properties: pagination: $ref: '#/components/schemas/Pagination' groups: type: array items: $ref: '#/components/schemas/Group' links: type: array items: $ref: '#/components/schemas/Links' Pagination: type: object properties: pageNumber: type: integer description: The current page number. pageSize: type: integer description: The max number of records that can be retrieved on this page. total: type: integer description: The total number of records. Links: type: object properties: prev: type: string default: '' description: URL of the previous page. Blank if currently on the first page. next: type: string default: '' description: URL of the next page. Blank if currently on the last page. Problem: type: object description: 'Problem Detail as a way to carry machine-readable details of errors in a HTTP response to avoid the need to define new error response formats for HTTP APIs RFC 7807 ' properties: type: type: string format: uri description: 'An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type (e.g., using HTML). ' default: about:blank example: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#constraint-violation title: type: string description: 'A short, summary of the problem type. Written in english and readable for engineers (usually not suited for non technical stakeholders and not localized). ' example: Service Unavailable nullable: true status: type: integer format: int32 description: 'The HTTP status code generated by the origin server for this occurrence of the problem. ' minimum: 100 maximum: 600 exclusiveMaximum: true example: 503 nullable: true detail: type: string description: 'A human readable explanation specific to this occurrence of the problem. ' example: Connection to database timed out nullable: true instance: type: string format: uri description: 'An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. ' nullable: true violations: type: array description: 'A list of violations that occurred as a result of invalid data provided as part of a request. ' nullable: true items: type: object properties: field: type: string description: 'The name of the field in the request that caused the violation. This can be the name of a path parameter, query parameter, or a field within the request body. ' example: accountId message: type: string description: 'A human readable explanation specific to this occurrence of the violation. ' example: must match "^[a-zA-Z]{6}$" code: type: integer format: int32 description: 'The violation code generated by the server for this occurrence of the violation. Use this code when implementing any error handling logic instead of the message, as the message can change. ' example: 20006 example: - field: emailAddress message: must not be null code: 20002 - field: accountId message: must match "^[a-zA-Z]{6}$" code: 20006 AuditSearchFilter: type: object description: 'The filter to be applied when searching for audit records. ' properties: startDate: type: string format: date-time description: 'The starting datetime to use when searching for audit records (in ISO 8601 format including timezone, ''yyyy-MM-dd''T''HH:mm:ss[.SSS]Z''). ' example: '2021-11-13T20:25:39.534Z' endDate: type: string format: date-time description: 'The ending datetime to use when searching for audit records (in ISO 8601 format including timezone, ''yyyy-MM-dd''T''HH:mm:ss[.SSS]Z''). ' example: '2021-11-15T16:07:12.723Z' author: type: string description: 'The ID of the author who changed the auditable object. This can be a user within the system or an automated app. ' maxLength: 255 pattern: ^[a-zA-Z0-9@._-]+$ example: jsmith@example.com event: type: string description: "This field indicates the type of event that occurred on the auditable object.\n\nAn explanation of\ \ the values is listed below:\n * CREATED - A new auditable object was created.\n * UPDATED - An existing auditable\ \ object was updated.\n * DELETED - An existing auditable object was deleted.\n" enum: - CREATED - UPDATED - DELETED type: description: "The type of auditable object.\n\nAccepted values:\n * GROUP\n" type: string enum: - GROUP example: GROUP ipAddress: description: 'The originating IP Address of the author who changed the auditable object. ' type: string maxLength: 15 example: 165.225.72.60 searchKeyword: description: 'Keyword to search for across all the audit records. ' type: string maxLength: 255 required: - startDate - endDate - type AuditRecords: description: 'A collection of audit records. ' type: object properties: pagination: $ref: '#/components/schemas/Pagination' auditRecords: type: array items: $ref: '#/components/schemas/AuditRecord' links: allOf: - $ref: '#/components/schemas/Links' example: prev: /api/admin/group/v1/accounts/ASDJGE/audit-records:search?pageNumber=1&pageSize=10 next: /api/admin/group/v1/accounts/ASDJGE/audit-records:search?pageNumber=2&pageSize=10 AuditRecord: type: object description: 'An audit record. ' properties: date: type: string description: 'The date and time of when the audit record was created. ' example: '2021-06-24T19:03:01.463+00:00' event: type: string description: "This field indicates the type of event that occurred on the auditable object.\n\nAn explanation of\ \ the values is listed below:\n * CREATED - A new auditable object was created.\n * UPDATED - An existing auditable\ \ object was updated.\n * DELETED - An existing auditable object was deleted.\n" enum: - CREATED - UPDATED - DELETED author: type: string example: jsmith@example.com description: 'The ID of the author who changed the auditable object. This can be a user within the system or an automated app. ' type: description: 'The type of auditable object. Accepted values: * GROUP ' enum: - GROUP type: string example: GROUP ipAddress: description: 'The originating IP Address of the author who changed the auditable object. ' type: string example: 165.225.72.60 auditData: $ref: '#/components/schemas/JsonNode' JsonNode: type: object title: JsonNode description: 'Contains the state of the auditable object at the time the audit record was created. ' parameters: accountId: name: accountId description: The unique 6 character internal id that represents the customer account. required: true in: path schema: type: string minLength: 6 maxLength: 6 pattern: ^[a-zA-Z]{6}$ example: ABCDEF pageNumber: name: pageNumber in: query description: The page number of the records to retrieve. Default value is 1. schema: type: integer format: int32 default: 1 minimum: 1 example: 1 groupId: name: groupId in: path description: The unique 36 character internal id that represents the group. required: true schema: type: string example: c8c2909d-75e9-484a-94c0-b7e8d29771fe minLength: 36 maxLength: 36 pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ securitySchemes: BearerAuth: type: http scheme: bearer description: This API uses Bearer Token Authorization Flow bearerFormat: JWT AppKey: type: apiKey in: header name: appkey description: This API needs an appKey as header examples: GroupsResult: description: Groups search response value: pagination: pageNumber: 1 pageSize: 10 total: 5 groups: - name: AgentGroup groupId: cd79f1f0-9e35-470c-bf70-542a39882b2d description: Group user resources: - type: User resourceIds: - 673dab47-5a08-4593-be5a-cdc4d23df814 organizationNodeId: QTRWAD links: - prev: /api/admin/group/v1/accounts/ASDJGE/groups?pageNumber=1&pageSize=10 next: /api/admin/group/v1/accounts/ASDJGE/groups?pageNumber=3&pageSize=10 Create-Group: description: Create Group Request value: name: AgentGroup description: Group user resources: - type: User resourceIds: - 673dab47-5a08-4593-be5a-cdc4d23df814 organizationNodeId: QTRWAD GroupsData: description: Create Group Request value: - type: User resourceIds: - 673dab47-5a08-4593-be5a-cdc4d23df814 Group: description: Group Data value: name: AgentGroup groupId: cd79f1f0-9e35-470c-bf70-542a39882b2d description: Group user resources: - type: User resourceIds: - 673dab47-5a08-4593-be5a-cdc4d23df814 organizationNodeId: QTRWAD ResourcesRemovedResponse: description: Resources removed response value: name: AgentGroup groupId: cd79f1f0-9e35-470c-bf70-542a39882b2d description: Group user resources: - type: User resourceIds: - 233dab47-5a08-4593-be5a-cdc4d23df813 organizationNodeId: QTRWAD GroupsUpdateRequest: description: Update Group Request value: name: AgentGroup description: Group user resources: - type: User resourceIds: - 673dab47-5a08-4593-be5a-cdc4d23df814 organizationNodeId: QTRWAD ConstraintViolationError: description: Constraint Violation value: type: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#constraint-violation title: Constraint Violation status: 400 detail: A problem that indicates a syntactically correct, yet semantically illegal request. The Server can not process this request until the client resolves the semantic errors described in the violations section. violations: - field: accountId message: must match "^[a-zA-Z]{6}$" code: 20006 UnauthorizedError: description: Forbidden value: type: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#unauthorized title: Unauthorized status: 401 detail: This operation requires authentication. See https://developers.avayacloud.com/onecloud-ccaas/docs/how-to-authenticate-with-ccaas-apis ForbiddenError: description: Forbidden value: type: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#forbidden title: Forbidden status: 403 detail: According to the access control policy the current user and/or accountId does not have permission to access this resource. NotFoundError: description: Resource not found value: type: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#resource-not-found title: Resource Not Found status: 404 detail: Group with id:7b711203-03fe-425c-8503-25826f2b579e not found. ServerError: description: Internal Server Error value: type: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#server-error title: Server Error status: 500 detail: An internal server error was encountered. ErrorTooManyRecords: description: Constraint Violation value: type: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#constraint-violation title: Constraint Violation status: 400 detail: A problem that indicates a syntactically correct, yet semantically illegal request. The Server can not process this request until the client resolves the semantic errors described in the violations section. violations: - field: endDate message: Too many records within the requested time interval. code: 20007 ErrorGroupNameExists: description: Constraint Violation value: type: https://developers.avayacloud.com/onecloud-ccaas/docs/error-handling#conflict title: Conflict status: 409 detail: A resource with the same unique constraint values already exists. violations: - field: name message: A group with this name already exists SearchAuditRecordsRequest: value: startDate: '2021-11-13T20:25:39.534Z' endDate: '2021-11-15T16:07:12.723Z' event: CREATED author: jsmith@example.com type: GROUP ipAddress: 165.225.72.60 searchKeyword: Out-of-Office GroupSearchAuditRecordsResponse: value: pagination: pageNumber: 1 pageSize: 5 total: 1 auditRecords: - date: '2021-11-14T09:24:05.234Z' event: CREATED author: jsmith@example.com ipAddress: 165.225.72.60 type: GROUP auditData: groupId: rt3e4567-e89b-12d3-a456-556642440000 name: CreditCardAgentGroup description: Credit Card Agent Group resources: - type: User resourceIds: - 04703a3a-3dfb-4606-ae79-fd0fe0be3e64 links: next: /api/admin/group/v1/accounts/ASDJGE/audit-records:search?pageNumber=2&pageSize=5 prev: /api/admin/group/v1/accounts/ASDJGE/audit-records:search?pageNumber=1&pageSize=5