33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
post:
|
|
tags: [Callbacks]
|
|
summary: Rotate callback signing secret
|
|
description: Generates and stores a new HMAC secret for the callback and returns it once.
|
|
operationId: callbacksRotateSecret
|
|
security:
|
|
- bearerAuth: []
|
|
parameters:
|
|
- $ref: ../parameters/callbacks_ref.yaml#/components/parameters/CallbacksRef
|
|
responses:
|
|
'200':
|
|
description: Callback secret rotated
|
|
content:
|
|
application/json:
|
|
schema:
|
|
allOf:
|
|
- $ref: ../response/response.yaml#/components/schemas/BaseResponse
|
|
- type: object
|
|
properties:
|
|
data:
|
|
$ref: ./response/callback.yaml#/components/schemas/CallbacksAuthData
|
|
'400':
|
|
$ref: ../response/operation.yaml#/components/responses/BadRequest
|
|
'401':
|
|
$ref: ../response/operation.yaml#/components/responses/Unauthorized
|
|
'403':
|
|
$ref: ../response/operation.yaml#/components/responses/Forbidden
|
|
'404':
|
|
$ref: ../response/operation.yaml#/components/responses/NotFound
|
|
'500':
|
|
$ref: ../response/operation.yaml#/components/responses/InternalServerError
|
|
|