Skip to content

Instantly share code, notes, and snippets.

@rattrayalex-stripe
Created November 14, 2018 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rattrayalex-stripe/3a930009093c191ae9b929e10c787a4f to your computer and use it in GitHub Desktop.
Save rattrayalex-stripe/3a930009093c191ae9b929e10c787a4f to your computer and use it in GitHub Desktop.
[paths."/v1/webhook_endpoints"]
[paths."/v1/webhook_endpoints".get]
description = "<p>Returns a list of your webhook endpoints.</p>"
operationId = "NotificationWebhookEndpointAll"
[[paths."/v1/webhook_endpoints".get.parameters]]
description = "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list."
in = "query"
name = "ending_before"
required = false
style = "form"
[paths."/v1/webhook_endpoints".get.parameters.schema]
maxLength = 5000
type = "string"
[[paths."/v1/webhook_endpoints".get.parameters]]
description = "Specifies which fields in the response should be expanded."
explode = true
in = "query"
name = "expand"
required = false
style = "deepObject"
[paths."/v1/webhook_endpoints".get.parameters.schema]
type = "array"
[paths."/v1/webhook_endpoints".get.parameters.schema.items]
maxLength = 5000
type = "string"
[[paths."/v1/webhook_endpoints".get.parameters]]
description = "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10."
in = "query"
name = "limit"
required = false
style = "form"
[paths."/v1/webhook_endpoints".get.parameters.schema]
type = "integer"
[[paths."/v1/webhook_endpoints".get.parameters]]
description = "A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list."
in = "query"
name = "starting_after"
required = false
style = "form"
[paths."/v1/webhook_endpoints".get.parameters.schema]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints".get.requestBody]
required = false
[paths."/v1/webhook_endpoints".get.requestBody.content]
[paths."/v1/webhook_endpoints".get.requestBody.content."application/x-www-form-urlencoded"]
[paths."/v1/webhook_endpoints".get.requestBody.content."application/x-www-form-urlencoded".encoding]
[paths."/v1/webhook_endpoints".get.requestBody.content."application/x-www-form-urlencoded".schema]
additionalProperties = false
type = "object"
[paths."/v1/webhook_endpoints".get.requestBody.content."application/x-www-form-urlencoded".schema.properties]
[paths."/v1/webhook_endpoints".get.responses]
[paths."/v1/webhook_endpoints".get.responses.200]
description = "Successful response."
[paths."/v1/webhook_endpoints".get.responses.200.content]
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json"]
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json".schema]
required = ["data", "has_more", "object", "url"]
type = "object"
x-expandableFields = ["data"]
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json".schema.properties]
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json".schema.properties.data]
type = "array"
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json".schema.properties.data.items]
"$ref" = "#/components/schemas/webhook_endpoint"
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json".schema.properties.has_more]
description = "True if this list has another page of items after this one that can be fetched."
type = "boolean"
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json".schema.properties.object]
description = "String representing the object's type. Objects of the same type share the same value. Always has the value `list`."
enum = ["list"]
type = "string"
[paths."/v1/webhook_endpoints".get.responses.200.content."application/json".schema.properties.url]
description = "The URL where this list can be accessed."
maxLength = 5000
pattern = "^/v1/webhook_endpoints"
type = "string"
[paths."/v1/webhook_endpoints".get.responses.default]
description = "Error response."
[paths."/v1/webhook_endpoints".get.responses.default.content]
[paths."/v1/webhook_endpoints".get.responses.default.content."application/json"]
[paths."/v1/webhook_endpoints".get.responses.default.content."application/json".schema]
"$ref" = "#/components/schemas/error"
[paths."/v1/webhook_endpoints".post]
description = "<p>A webhook endpoint must have a <code>url</code> and a list of <code>enabled_events</code>. You may optionally specify the Boolean <code>connect</code> parameter. If set to true, then a Connect webhook endpoint that notifies the specified <code>url</code> about events from all connected accounts is created; otherwise an account webhook endpoint that notifies the specified <code>url</code> only about events from your account is created. You can also create webhook endpoints in the <a href=\"https://dashboard.stripe.com/account/webhooks\">webhooks settings</a> section of the Dashboard.</p>"
operationId = "NotificationWebhookEndpointCreate"
[paths."/v1/webhook_endpoints".post.requestBody]
required = true
[paths."/v1/webhook_endpoints".post.requestBody.content]
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded"]
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".encoding]
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".encoding.enabled_events]
explode = true
style = "deepObject"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".encoding.expand]
explode = true
style = "deepObject"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema]
additionalProperties = false
required = ["enabled_events", "url"]
type = "object"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema.properties]
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.connect]
description = "Whether this endpoint should receive events from connected accounts (`true`), or your account (`false`)."
type = "boolean"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.enabled_events]
description = "The list of events to enable for this endpoint. You may specify `['*']` to enable all events."
type = "array"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.enabled_events.items]
enum = ["*", "account.application.authorized", "account.application.deauthorized", "account.approaching_unactivated_threshold", "account.exceeded_unactivated_threshold", "account.external_account.created", "account.external_account.deleted", "account.external_account.updated", "account.need_info", "account.need_info.resolved", "account.note_for_review", "account.note_for_review.resolved", "account.reject", "account.reject.resolved", "account.risk_transfers_disabled", "account.updated", "application_fee.created", "application_fee.refund.updated", "application_fee.refunded", "balance.available", "balance.stripe_reserve_canceled", "balance.stripe_reserve_created", "balance.stripe_reserve_expired", "batch.created", "batch.updated", "capability.created", "capability.updated", "charge.captured", "charge.dispute.closed", "charge.dispute.created", "charge.dispute.funds_reinstated", "charge.dispute.funds_withdrawn", "charge.dispute.updated", "charge.expired", "charge.failed", "charge.pending", "charge.refund.updated", "charge.refunded", "charge.succeeded", "charge.updated", "checkout_beta.session_succeeded", "coupon.created", "coupon.deleted", "coupon.updated", "customer.bank_account.created", "customer.bank_account.deleted", "customer.bank_account.updated", "customer.card.contact_cardholder", "customer.card.created", "customer.card.deleted", "customer.card.updated", "customer.created", "customer.deleted", "customer.discount.created", "customer.discount.deleted", "customer.discount.updated", "customer.payment_method.created", "customer.payment_method.deleted", "customer.payment_method.updated", "customer.source.contact_cardholder", "customer.source.created", "customer.source.deleted", "customer.source.expiring", "customer.source.updated", "customer.subscription.created", "customer.subscription.deleted", "customer.subscription.trial_will_end", "customer.subscription.updated", "customer.updated", "file.created", "invoice.created", "invoice.deleted", "invoice.finalized", "invoice.marked_uncollectible", "invoice.payment_failed", "invoice.payment_succeeded", "invoice.sent", "invoice.upcoming", "invoice.updated", "invoice.voided", "invoiceitem.created", "invoiceitem.deleted", "invoiceitem.updated", "issuer_fraud_record.created", "issuing_authorization.created", "issuing_authorization.request", "issuing_authorization.updated", "issuing_card.created", "issuing_card.updated", "issuing_cardholder.created", "issuing_cardholder.updated", "issuing_dispute.created", "issuing_dispute.updated", "issuing_transaction.created", "issuing_transaction.updated", "order.created", "order.payment_failed", "order.payment_succeeded", "order.updated", "order_return.created", "payment.created", "payment.failed", "payment.paid", "payment_intent.amount_capturable_updated", "payment_intent.created", "payment_intent.payment_failed", "payment_intent.requires_capture", "payment_intent.succeeded", "payment_provider_balance_transaction.created", "payment_provider_transfer.updated", "payout.canceled", "payout.created", "payout.failed", "payout.paid", "payout.updated", "person.created", "person.deleted", "person.updated", "ping", "plan.created", "plan.deleted", "plan.updated", "product.created", "product.deleted", "product.updated", "recipient.card.created", "recipient.card.deleted", "recipient.card.updated", "recipient.created", "recipient.deleted", "recipient.updated", "recipient_transfer.canceled", "recipient_transfer.created", "recipient_transfer.failed", "recipient_transfer.paid", "recipient_transfer.updated", "refund.created", "refund.failed", "reporting.report_run.failed", "reporting.report_run.succeeded", "reporting.report_run.updated", "reporting.report_type.updated", "review.closed", "review.opened", "sigma.scheduled_query_run.created", "sku.created", "sku.deleted", "sku.updated", "source.canceled", "source.chargeable", "source.failed", "source.mandate_notification", "source.refund_attributes_required", "source.transaction.created", "source.transaction.updated", "subscription_schedule.canceled", "subscription_schedule.completed", "subscription_schedule.created", "subscription_schedule.released", "subscription_schedule.updated", "topup.canceled", "topup.created", "topup.failed", "topup.reversed", "topup.succeeded", "transfer.canceled", "transfer.created", "transfer.failed", "transfer.paid", "transfer.reversed", "transfer.updated"]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.expand]
description = "Specifies which fields in the response should be expanded."
type = "array"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.expand.items]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.url]
description = "The URL of the webhook endpoint."
type = "string"
[paths."/v1/webhook_endpoints".post.responses]
[paths."/v1/webhook_endpoints".post.responses.200]
description = "Successful response."
[paths."/v1/webhook_endpoints".post.responses.200.content]
[paths."/v1/webhook_endpoints".post.responses.200.content."application/json"]
[paths."/v1/webhook_endpoints".post.responses.200.content."application/json".schema]
"$ref" = "#/components/schemas/webhook_endpoint"
[paths."/v1/webhook_endpoints".post.responses.default]
description = "Error response."
[paths."/v1/webhook_endpoints".post.responses.default.content]
[paths."/v1/webhook_endpoints".post.responses.default.content."application/json"]
[paths."/v1/webhook_endpoints".post.responses.default.content."application/json".schema]
"$ref" = "#/components/schemas/error"
[paths."/v1/webhook_endpoints/{webhook_endpoint}"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete]
description = "<p>You can also delete webhook endpoints via the <a href=\"https://dashboard.stripe.com/account/webhooks\">webhook endpoint management</a> page of the Stripe dashboard.</p>"
operationId = "NotificationWebhookEndpointDelete"
[[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.parameters]]
description = "The ID of the webhook endpoint to delete."
in = "path"
name = "webhook_endpoint"
required = true
style = "simple"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.parameters.schema]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.requestBody]
required = false
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.requestBody.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.requestBody.content."application/x-www-form-urlencoded"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.requestBody.content."application/x-www-form-urlencoded".encoding]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.requestBody.content."application/x-www-form-urlencoded".schema]
additionalProperties = false
type = "object"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.requestBody.content."application/x-www-form-urlencoded".schema.properties]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.200]
description = "Successful response."
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.200.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.200.content."application/json"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.200.content."application/json".schema]
"$ref" = "#/components/schemas/deleted_webhook_endpoint"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.default]
description = "Error response."
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.default.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.default.content."application/json"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".delete.responses.default.content."application/json".schema]
"$ref" = "#/components/schemas/error"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get]
description = "<p>Retrieves the webhook endpoint with the given ID.</p>"
operationId = "NotificationWebhookEndpointRetrieve"
[[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.parameters]]
description = "Specifies which fields in the response should be expanded."
explode = true
in = "query"
name = "expand"
required = false
style = "deepObject"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.parameters.schema]
type = "array"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.parameters.schema.items]
maxLength = 5000
type = "string"
[[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.parameters]]
description = "The ID of the desired webhook endpoint."
in = "path"
name = "webhook_endpoint"
required = true
style = "simple"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.parameters.schema]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.requestBody]
required = false
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.requestBody.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.requestBody.content."application/x-www-form-urlencoded"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.requestBody.content."application/x-www-form-urlencoded".encoding]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.requestBody.content."application/x-www-form-urlencoded".schema]
additionalProperties = false
type = "object"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.requestBody.content."application/x-www-form-urlencoded".schema.properties]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.200]
description = "Successful response."
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.200.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.200.content."application/json"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.200.content."application/json".schema]
"$ref" = "#/components/schemas/webhook_endpoint"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.default]
description = "Error response."
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.default.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.default.content."application/json"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".get.responses.default.content."application/json".schema]
"$ref" = "#/components/schemas/error"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post]
description = "<p>Updates the webhook endpoint. You may edit the <code>url</code>, the list of <code>enabled_events</code>, and the status of your endpoint.</p>"
operationId = "NotificationWebhookEndpointUpdate"
[[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.parameters]]
description = "The ID of the desired webhook endpoint."
in = "path"
name = "webhook_endpoint"
required = true
style = "simple"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.parameters.schema]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody]
required = false
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".encoding]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".encoding.enabled_events]
explode = true
style = "deepObject"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".encoding.expand]
explode = true
style = "deepObject"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema]
additionalProperties = false
type = "object"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema.properties]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.disabled]
description = "Disable the webhook endpoint if set to true."
type = "boolean"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.enabled_events]
description = "The list of events to enable for this endpoint. You may specify `['*']` to enable all events."
type = "array"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.enabled_events.items]
enum = ["*", "account.application.authorized", "account.application.deauthorized", "account.approaching_unactivated_threshold", "account.exceeded_unactivated_threshold", "account.external_account.created", "account.external_account.deleted", "account.external_account.updated", "account.need_info", "account.need_info.resolved", "account.note_for_review", "account.note_for_review.resolved", "account.reject", "account.reject.resolved", "account.risk_transfers_disabled", "account.updated", "application_fee.created", "application_fee.refund.updated", "application_fee.refunded", "balance.available", "balance.stripe_reserve_canceled", "balance.stripe_reserve_created", "balance.stripe_reserve_expired", "batch.created", "batch.updated", "capability.created", "capability.updated", "charge.captured", "charge.dispute.closed", "charge.dispute.created", "charge.dispute.funds_reinstated", "charge.dispute.funds_withdrawn", "charge.dispute.updated", "charge.expired", "charge.failed", "charge.pending", "charge.refund.updated", "charge.refunded", "charge.succeeded", "charge.updated", "checkout_beta.session_succeeded", "coupon.created", "coupon.deleted", "coupon.updated", "customer.bank_account.created", "customer.bank_account.deleted", "customer.bank_account.updated", "customer.card.contact_cardholder", "customer.card.created", "customer.card.deleted", "customer.card.updated", "customer.created", "customer.deleted", "customer.discount.created", "customer.discount.deleted", "customer.discount.updated", "customer.payment_method.created", "customer.payment_method.deleted", "customer.payment_method.updated", "customer.source.contact_cardholder", "customer.source.created", "customer.source.deleted", "customer.source.expiring", "customer.source.updated", "customer.subscription.created", "customer.subscription.deleted", "customer.subscription.trial_will_end", "customer.subscription.updated", "customer.updated", "file.created", "invoice.created", "invoice.deleted", "invoice.finalized", "invoice.marked_uncollectible", "invoice.payment_failed", "invoice.payment_succeeded", "invoice.sent", "invoice.upcoming", "invoice.updated", "invoice.voided", "invoiceitem.created", "invoiceitem.deleted", "invoiceitem.updated", "issuer_fraud_record.created", "issuing_authorization.created", "issuing_authorization.request", "issuing_authorization.updated", "issuing_card.created", "issuing_card.updated", "issuing_cardholder.created", "issuing_cardholder.updated", "issuing_dispute.created", "issuing_dispute.updated", "issuing_transaction.created", "issuing_transaction.updated", "order.created", "order.payment_failed", "order.payment_succeeded", "order.updated", "order_return.created", "payment.created", "payment.failed", "payment.paid", "payment_intent.amount_capturable_updated", "payment_intent.created", "payment_intent.payment_failed", "payment_intent.requires_capture", "payment_intent.succeeded", "payment_provider_balance_transaction.created", "payment_provider_transfer.updated", "payout.canceled", "payout.created", "payout.failed", "payout.paid", "payout.updated", "person.created", "person.deleted", "person.updated", "ping", "plan.created", "plan.deleted", "plan.updated", "product.created", "product.deleted", "product.updated", "recipient.card.created", "recipient.card.deleted", "recipient.card.updated", "recipient.created", "recipient.deleted", "recipient.updated", "recipient_transfer.canceled", "recipient_transfer.created", "recipient_transfer.failed", "recipient_transfer.paid", "recipient_transfer.updated", "refund.created", "refund.failed", "reporting.report_run.failed", "reporting.report_run.succeeded", "reporting.report_run.updated", "reporting.report_type.updated", "review.closed", "review.opened", "sigma.scheduled_query_run.created", "sku.created", "sku.deleted", "sku.updated", "source.canceled", "source.chargeable", "source.failed", "source.mandate_notification", "source.refund_attributes_required", "source.transaction.created", "source.transaction.updated", "subscription_schedule.canceled", "subscription_schedule.completed", "subscription_schedule.created", "subscription_schedule.released", "subscription_schedule.updated", "topup.canceled", "topup.created", "topup.failed", "topup.reversed", "topup.succeeded", "transfer.canceled", "transfer.created", "transfer.failed", "transfer.paid", "transfer.reversed", "transfer.updated"]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.expand]
description = "Specifies which fields in the response should be expanded."
type = "array"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.expand.items]
maxLength = 5000
type = "string"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.requestBody.content."application/x-www-form-urlencoded".schema.properties.url]
description = "The URL of the webhook endpoint."
type = "string"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.200]
description = "Successful response."
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.200.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.200.content."application/json"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.200.content."application/json".schema]
"$ref" = "#/components/schemas/webhook_endpoint"
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.default]
description = "Error response."
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.default.content]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.default.content."application/json"]
[paths."/v1/webhook_endpoints/{webhook_endpoint}".post.responses.default.content."application/json".schema]
"$ref" = "#/components/schemas/error"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment