Short Code Submission (Order)
Overview
Authentication
Mutation - Submit a short code form (order)
mutation (
$businessName: String!
$businessRegisteredAddress: String!
$businessRegisteredCity: String!
$businessRegisteredState: String!
$businessRegisteredZip: String!
$businessContactFirstName: String!
$businessContactLastName: String!
$businessContactEmail: String!
$businessContactPhone: String!
$useCase: String!
$termsAndConditionsWebsite: String!
$privacyPolicyWebsite: String!
$callToActionLocations: String!
$callToActionLanguage: String!
$optInKeywords: String!
$optInConfirmation: String!
$welcomeMessage: String!
$exampleAlerts: String!
$helpResponseText: String!
$stopResponseText: String!
$customerSupportContactEmail: String!
$customerSupportContactPhone: String!
$customerSupportUrl: String!
$attachments: [String!]!
) {
submitShortcodeForm(
businessName: $businessName,
businessRegisteredAddress: $businessRegisteredAddress,
businessRegisteredCity: $businessRegisteredCity,
businessRegisteredState: $businessRegisteredState,
businessRegisteredZip: $businessRegisteredZip,
businessContactFirstName: $businessContactFirstName,
businessContactLastName: $businessContactLastName,
businessContactEmail: $businessContactEmail,
businessContactPhone: $businessContactPhone,
useCase: $useCase,
termsAndConditionsWebsite: $termsAndConditionsWebsite,
privacyPolicyWebsite: $privacyPolicyWebsite,
callToActionLocations: $callToActionLocations,
callToActionLanguage: $callToActionLanguage,
optInKeywords: $optInKeywords,
optInConfirmation: $optInConfirmation,
welcomeMessage: $welcomeMessage,
exampleAlerts: $exampleAlerts,
helpResponseText: $helpResponseText,
stopResponseText: $stopResponseText,
customerSupportContactEmail: $customerSupportContactEmail,
customerSupportContactPhone: $customerSupportContactPhone,
customerSupportUrl: $customerSupportUrl,
attachments: $attachments,
) {
id
publicId
insertedAt
name
status
statusNote
finishedAt
data {
...ShortcodeFormFields
}
}
}
fragment ShortcodeFormFields on ShortcodeFormOrderData {
type
businessName
businessRegisteredAddress
businessRegisteredCity
businessRegisteredState
businessRegisteredZip
businessContactFirstName
businessContactLastName
businessContactEmail
businessContactPhone
useCase
termsAndConditionsWebsite
privacyPolicyWebsite
callToActionLocations
callToActionLanguage
optInKeywords
optInConfirmation
welcomeMessage
exampleAlerts
helpResponseText
stopResponseText
customerSupportContactEmail
customerSupportContactPhone
customerSupportUrl
attachments
}Sample arguments
Query - list short code form orders
Last updated
Was this helpful?