Strise Connect API Docs
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

CreateFormUrlInput!

Type

CreateFormUrlPayload object

CreateFormUrlPayload The payload for creating a new URL for a customer facing form.

Response Fields

success Boolean! non-null scalar

Boolean!

url String scalar

String The newly created URL for the form.

On this page