For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
      • Overview
          • MUTaddUserToAccount
          • MUTremoveUserFromAccount
          • MUTcreateCheckout
          • MUTcancelSubscription
          • MUTcreateUserWithPassword
          • MUTcreateUser
          • MUTaddUserToStore
          • MUTremoveUserFromStore
          • MUTcreateEventSource
          • MUTdeleteEventSource
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAccountMutations

deleteEventSource

Example Query
1mutation ExampleMutation($input: DeleteEventSourceInput) {
2 deleteEventSource(input: $input) {
3 deletedEventSourceId
4 affectedWebhooksIds
5 }
6}
Variables
1{
2 "input": {
3 "appId": "example",
4 "id": "example"
5 }
6}
Example response
1{
2 "data": {
3 "deleteEventSource": {
4 "deletedEventSourceId": "example",
5 "affectedWebhooksIds": [
6 "example"
7 ]
8 }
9 }
10}
Deletes an Amazon EventSource.
Was this page helpful?
Previous

createEventSource

Next

companyRoles

Built with

Arguments

inputDeleteEventSourceInputRequired

Returns

an optional DeleteEventSourceResult
deletedEventSourceIdString
The ID of the object.
affectedWebhooksIdslist of Strings
The IDs of affected webhooks by event source delete mutation. Their status is automatically changed to disabled.