Retrieve the configured queue (metadata only)
Returns the queue config minus any write-only secrets (SAS tokens). `404 queue_not_configured` if the named stream has no queue registered — events for unconfigured streams are buffered until a queue is registered.
Path Parameters
Header Parameters
Response Body
application/json
application/json
curl -X GET "https://loading/v1/admin/org/queues/string"{
"data": {
"queue_name": "string",
"type": "aws_sqs",
"aws_sqs": {
"queue_arn": "string",
"region": "string",
"role_arn": "string",
"publishing_principal_arn": "string"
},
"azure_event_hubs": {
"namespace": "string",
"event_hub_name": "string"
},
"azure_storage_queue": {
"account_name": "string",
"queue_name": "string"
},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Revoke a tenant key
Subsequent requests using the raw secret receive `401 unauthorized`. Revoking the key used to authenticate the current request returns `409 cannot_revoke_self` — mint a replacement and authenticate with it first, or use `POST /v1/auth/tenant-key/rotate` for grace-period rotation.
Register a queue target for the given event stream
Polymorphic body discriminated by `type` (`aws_sqs`, `azure_event_hubs`, `azure_storage_queue`). Validated by a synthetic test publish before persisting; on test-publish failure returns `400 invalid_request` with the underlying provider error and no configuration is stored. `409 queue_already_configured` if a config exists — use `PUT` to replace.