1. Transactions
Harbor Gateway
  • Harbor Gateway Local API
    • How to Use Harbor Gateway Local API
    • Health & Status
      • Admin interface
      • Health check
    • Transactions
      • List all transactions
      • Create a transaction
      • Get transaction details
      • Release transaction
      • Open locker by transaction ID
    • 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
      • LockerConfig
      • System
      • LogEntry
      • OperationResponse
      • LockerOperationResponse
      • MultiStatusOperationResponse
      • BankType
      • OpenAllLockersResponse
      • BankTypeAssociation
      • Error
      • BankTypeWithAssociations
      • DeviceHeartbeatRequest
  • Harbor Gateway Cloud API
    • How to Use Harbor Gateway Cloud API
    • Meta
      • API version probe
    • Session
      • Identify the authenticated API key
      • List locations accessible to this API key
    • Requests
      • Poll a pending request
    • Locations
      • Gateway health check
    • System
      • Gateway system info
    • Transactions
      • List transactions at a location
        GET
      • Create a transaction
        POST
      • Fetch a transaction
        GET
      • Release a transaction
        DELETE
      • Open the locker assigned to a transaction
        POST
    • Lockers
      • List lockers
      • Locker configuration
      • Fetch a locker
      • Update a locker (e.g. out-of-service)
      • Open a specific locker
    • Types
      • List locker types
      • Fetch a locker type
      • List bank types
      • Fetch a bank type
    • Schemas
      • ApiMeta
      • MeResponse
      • LocationSummary
      • LocationList
      • PendingRequest
      • Error
      • CreateTransactionBody
      • PatchLockerBody
  1. Transactions

Release a transaction

DELETE
https://main-harbor-gw-mon.erd.luxerone.com/api/customer/v1/locations/{locationId}/transactions/{transactionId}
Releases the transaction, freeing its assigned locker and marking
the transaction complete on the gateway. Use Idempotency-Key for
safe retries.

Request

Authorization
API Key
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
or
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Header Params

Responses

🟢200
application/json
Gateway accepted the release.
Bodyapplication/json

🟢202Pending
🟠400InvalidRequest
🟠401AuthRequired
🟠403PermissionDenied
🟠404NotFound
🟠413PayloadTooLarge
🟠429RateLimited
🔴502BadGateway
🔴503Unavailable
🔴504GatewayTimeout
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://main-harbor-gw-mon.erd.luxerone.com/api/customer/v1/locations/65/transactions/ORDER-8821' \
--header 'Idempotency-Key: b9a3f1e0-4a22-4f3a-9e12-2cc5f3a1e0b9' \
--header 'Prefer: wait=10' \
--header 'X-API-Key: <api-key>'
Response Response Example
200 - Example 1
null
Modified at 2026-04-25 04:30:38
Previous
Fetch a transaction
Next
Open the locker assigned to a transaction
Built with