Bulk delete bindings
User API key (Bearer scp_u_...). Create in Platform > API Keys.
In: header
Request Body
application/json
Array of bindings IDs to delete
Response Body
application/json
curl -X POST "https://loading/api/v1/bindings/bulk-delete" \ -H "Content-Type: application/json" \ -d '[ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ]'{
"meta": {
"api_version": 1,
"server_version": "0.13.5"
},
"success": true,
"data": {
"deleted_count": 0,
"requested_count": 0
},
"error": "string"
}List all bindings
Previous Page
Create a new binding
Creates a binding that associates a service with a port or interface. ### Binding Types - **Interface binding**: Service is present at an interface (IP address) without a specific port. Used for non-port-bound services like gateways. - **Port binding (specific interface)**: Service listens on a specific port on a specific interface. - **Port binding (all interfaces)**: Service listens on a specific port on all interfaces (`interface_id: null`). ### Validation and Deduplication Rules - **Conflict detection**: Interface bindings conflict with port bindings on the same interface. A port binding on all interfaces conflicts with any interface binding for the same service. - **All-interfaces precedence**: When creating a port binding with `interface_id: null`, any existing specific-interface bindings for the same port are automatically removed, as they are superseded by the all-interfaces binding.