meta { name: List every webhook subscription type: http seq: 1 } get { url: {{baseUrl}}/admin/webhooks body: none auth: bearer } auth:bearer { token: {{token}} } example { name: 200 Response description: All subscriptions across all DIDs. request: { url: {{baseUrl}}/admin/webhooks method: GET mode: none } response: { headers: { Content-Type: application/json } status: { code: 200 text: OK } body: { type: json content: ''' [ { "id": 0, "did": "", "method": "", "url": "", "verb": "" } ] ''' } } } example { name: 401 Response description: Missing or invalid bearer token. request: { url: {{baseUrl}}/admin/webhooks method: GET mode: none } response: { headers: { Content-Type: application/json } status: { code: 401 text: Unauthorized } body: { type: json content: ''' { "error": "" } ''' } } } example { name: 403 Response description: Token is valid but the caller is not authorized for this resource. request: { url: {{baseUrl}}/admin/webhooks method: GET mode: none } response: { headers: { Content-Type: application/json } status: { code: 403 text: Forbidden } body: { type: json content: ''' { "error": "" } ''' } } }