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 details
      • Open locker by ID
      • Open all lockers
    • System
      • Get system information
      • Update system configuration
      • Get system logs
    • Schemas
      • Locker
      • TransactionResponse
      • LockController
      • System
      • LogEntry
      • OperationResponse
      • LockerOperationResponse
      • MultiStatusOperationResponse
      • OpenAllLockersResponse
      • Error
  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

🟢204No Content
Transaction released successfully (no content)
This response does not have a body.
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/transactions/'
Response Response Example
404 - Example 1
{
    "error": "INVALID_REQUEST",
    "message": "string",
    "timestamp": "2019-08-24T14:15:22Z",
    "details": {}
}
Modified at 2025-11-27 00:04:50
Previous
Get transaction details
Next
Open locker by transaction ID
Built with