Mutations
createFormUrl
Create a new URL for an active customer facing form.
mutation CreateFormUrl($where: CreateFormUrlInput!) {
createFormUrl(where: $where) {
success
url
}
}input CreateFormUrlInput {
companyId: CompanyId!
documentId: ID!
timeToLive: Int
}Arguments
where CreateFormUrlInput! non-null input
Type
CreateFormUrlPayload object
CreateFormUrlPayload
The payload for creating a new URL for a customer facing form.
Response Fields
success Boolean! non-null scalar
url String scalar
String
The newly created URL for the form.