updateNotificationCallbackConfig mutation
Updates the callback configuration, including the callback URL, API key, partner email address (where secret expiry warnings are sent) and request timeout value.
Syntax
1mutation {2 updateNotificationCallbackConfig(5}
Example
- Request
- Response
1mutation {2 updateNotificationCallbackConfig (3 input: {4 callbackConfigId: "1969081f-8380-4dbd-9a19-c26fc1747b06",5 callbackUrl : "https://testcallbackurl.com",6 apiKey : "newapikey",7 requestTimeoutSeconds: 50,8 contactEmail: "partner@mypms.com"9 })10 {11 callbackConfig {12 id13 callbackUrl14 secretExpirationDateTime15 requestTimeoutSeconds16 contactEmail17 }18 }19}
Arguments
Name | Description |
---|---|
| Required. Details used when updating the callback configuration. Type: UpdateNotificationCallbackConfigInput |
Types
Name | Type | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EmailAddress | EmailAddress | |||||||||||||
A field whose value conforms to the standard internet email address format as specified in HTML Spec. | ||||||||||||||
ID | ID | |||||||||||||
The | ||||||||||||||
Int | Int | |||||||||||||
The | ||||||||||||||
LocalDateTime | LocalDateTime | |||||||||||||
A type representing a date and time (such as 2007-12-03T10:15:30). | ||||||||||||||
NotificationCallbackConfig | Object | |||||||||||||
Details about the callback configuration.
| ||||||||||||||
String | String | |||||||||||||
The | ||||||||||||||
UpdateNotificationCallbackConfigInput | InputObject | |||||||||||||
Details to use when updating the callback configuration.
| ||||||||||||||
UpdateNotificationCallbackConfigPayload | Object | |||||||||||||
Details about the callback configuration after it is updated.
| ||||||||||||||
Url | Url | |||||||||||||
Scalar type whose value conforms to the standard URL format as specified in RFC3986 specification. |