# Endpoint to retrieve all owned subscriptions. Retrieves all subscriptions created and owned by the client identified by the JWT token. Endpoint: GET /webhook/management/v1 Version: 1.0.0 Security: JSON Web Token ## Header parameters: - `Authorization` (string, required) For each request, a valid access token must be provided in the Authorization header. See Authentication API for obtaining a valid token. ## Response 200 fields (application/json): - `id` (string) ID of the subscription. Example: "d8znR1k1_0Kw305BsoPT" - `url` (string) HTTP URL to execute the webhook call with the POST method. Example: "https://api.merchant.com/event" - `event_type` (string) Type of the event to process by calling the API endpoint. Example: "INVOICE_INVOICE" - `secret` (string) Parameter given by the client to sign their payloads. Recommended to be unique for each URL. Example: "6GHbLH4d1Nx3eIs5CyLHCW4HuFi1qttpNSDawHKHlW7kurTpaddarwEKDWUI59IU" ## Response 403 fields (application/problem+json): - `name` (string) Example: "ForbiddenError" - `message` (string) A message containing the error. Example: "Bad request because the client is not allowed to update the resource." ## Response 405 fields (application/problem+json): - `message` (string) A message containing the error. Example: "Bad request because the HTTP method is not allowed." ## Response 406 fields (application/problem+json): - `message` (string) A message containing the error. Example: "Bad request because the server cannot produce a response matching the list of acceptable values." ## Response 500 fields (application/problem+json): - `message` (string) A message containing the error. Example: "Invalid authorization token."