Harbor Gateway
  1. Transactions
Harbor Gateway
  • Harbor Gateway API
    • Harbor Gateway
    • Health & Status
      • Admin interface
      • Health check
    • Transactions
      • List all transactions
        GET
      • Create a transaction
        POST
      • Get transaction details
        GET
      • Release transaction
        DELETE
      • Open locker by transaction ID
        POST
    • Lockers
      • List all lockers
      • Get locker configuration
      • Get locker details
      • Update locker service state
      • Open locker by ID
      • Open all lockers
    • Locker Types
      • List all locker types
      • Get locker type details
    • Bank Types
      • List all bank types
      • Get bank type with associations
    • System
      • Receive heartbeat from external device
    • Schemas
      • Locker
      • LockerTypeSummary
      • TransactionResponse
      • LockerType
      • LockController
      • System
      • LockerConfig
      • LogEntry
      • OperationResponse
      • LockerOperationResponse
      • MultiStatusOperationResponse
      • BankType
      • OpenAllLockersResponse
      • BankTypeAssociation
      • Error
      • BankTypeWithAssociations
      • DeviceHeartbeatRequest
  1. Transactions

Release transaction

DELETE
/transactions/{transactionId}
Releases the transaction, disassociating it from the locker and marking the locker as available. Does not trigger any door operations.

Request

Path Params

Responses

🟢204
Transaction released successfully (no content)
This response does not have a body.
🟠404
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/transactions/'
Response Response Example
404 - Example 1
{
    "error": "NO_AVAILABLE_LOCKERS",
    "message": "string",
    "timestamp": "2019-08-24T14:15:22.123Z",
    "details": {
        "property1": "string",
        "property2": "string"
    }
}
Modified at 2026-02-20 22:56:40
Previous
Get transaction details
Next
Open locker by transaction ID
Built with