openapi: 3.0.0 info: title: Secret Server Rest Activations BulkOperations API description: REST API documentation for Secret Server. This document describes how to use the REST API. All requests require an authentication token; please see the authentication document for more information. The Swagger specification for this API is also available. termsOfService: https://delinea.com/eula contact: name: Support url: https://delinea.com version: 11.7.2 servers: - url: /SecretServer/api security: - BearerToken: [] tags: - name: BulkOperations description: View Bulk Operations paths: /v1/bulk-operations/{id}/progress: get: tags: - BulkOperations summary: Progress description: Get the progress of a bulk operation by id. operationId: BulkOperationsService_GetProgress parameters: - name: id in: path description: Id of Bulk operation to retrieve. required: true schema: type: string responses: '200': description: BulkOperationProgressModel object content: application/json: schema: $ref: '#/components/schemas/BulkOperationProgressModel' '400': description: Bad request content: application/json: schema: $ref: '#/components/schemas/BadRequestResponse' '403': description: Authentication failed content: application/json: schema: $ref: '#/components/schemas/AuthenticationFailedResponse' '500': description: Internal server error content: application/json: schema: $ref: '#/components/schemas/InternalServerErrorResponse' deprecated: false components: schemas: BadRequestResponse: description: Response object for invalid requests required: - message properties: message: description: Error message type: string messageDetail: description: Error message detail type: string errorCode: description: Error message code type: string modelState: description: An object describing validation errors type: object type: object InternalServerErrorResponse: description: Response object for internal server errors required: - message - exceptionMessage - exceptionType - stackTrace properties: message: description: Error message type: string exceptionMessage: description: Error message from exception type: string exceptionType: description: Exception type type: string stackTrace: description: Exception stack trace type: string type: object BulkOperationProgressModel: description: BulkOperationProgressModel properties: errors: description: A list of errors related to this Bulk Operation. items: $ref: '#/components/schemas/BulkOperationErrorModel' type: array identifier: description: The identifier of the Bulk Operation. type: string isComplete: description: Indicates if the Bulk Operation has completed. type: boolean percentageComplete: description: The percentage of items the Bulk Operation has completed processing. type: integer format: int32 statusMessage: description: A message describing the Bulk Operation's current status. type: string type: object AuthenticationFailedResponse: description: Response object for authentication failures required: - message properties: message: description: Error message type: string type: object BulkOperationErrorModel: description: A list of errors related to this Bulk Operation. properties: errorMessage: description: A message describing the error that occurred. type: string itemName: description: The name of the item that the error relates to. type: string type: object securitySchemes: BearerToken: type: apiKey description: 'Perform a POST request to `/oauth2/token`. It should include three form data parameters - `username`, `password`, and `grant_type`.The `grant_type` parameter should always have the value `password`.The access token returned should be included in the header of subsequent requests, like ''Authorization: Bearer token''. The token remains valid for a time period returned in the ''expires_in'' property (in seconds). For details, see the token request documentation.' name: Authorization in: header