HTTP Operation Type Object DTO Why-DTOs?
(Mutation Why 200?) unReconcileBankMovement UnReconcileBankMovementGLDtoInput

Description

Unreconcile bank movement is a business mutation that reverses the reconciliation for a given bank movement: links to accounting entries and related reconciliation state are cleared for that movement, consistent with undoing the outcome of reconcile bank movement.

Pass the bank movement to reverse using bankTransactionId (same identifier as the id of a row in bank movements).
This removes the reconciliation links established for that movement (inverse of reconcile bank movement).

graphQL Mutation

mutation (
  $input: UnReconcileBankMovementGLDtoInput!
) {
  unReconcileBankMovement(input: $input) {
    id
  }
}

graphQL Variables
{
  "input": {
    "bankTransactionId": "11111111-1111-1111-1111-111111111111"
  }
}

Example Response
{
  "data": {
    "unReconcileBankMovement": {
      "id": "11111111-1111-1111-1111-111111111111"
    }
  }
}

Key Value
Authorization Bearer Current access Token How to find?
X-TenantId Current tenant id Why deprecated ?
X-OrganizationId Current organization Id How to find?
x-api-key Primary or secondary subscription key of your app How to find?

UnReconcileBankMovement Input parameters

Fields Type Description
bankTransactionId UUID Bank movement to unreconcile (same entity as the id of the bank movement list)

unReconcileBankMovement response

Fields Type Description
id UUID Identifier of the resource returned by the mutation (typically the bank transaction / movement)