Mutations¶
To run a mutation, enter the mutation in the query window and click Send Request. The image that follows demonstrates adding a 1098 statement (Mortgage Interest Statement) with mutation containing sample data:
mutation {
addF1098Statements(
statements: [
{
uploaderId: "11316883"
tags: ["New York City", "Group 4"]
mortgageInterest: "12002.04"
propertyAddressSameAsBorrower: true
recipientAddress1: "784 East 77th Street"
recipientCity: "New York"
recipientFirstName: "Leif"
recipientLastName: "Babson"
recipientState: "NY"
recipientTin: "200213492"
recipientZipCode: "10162"
senderAddress1: "406 Chambers Street"
senderCity: "New York"
senderName: "Empire Savings Bank"
senderPhoneNumber: "2125557318"
senderState: "NY"
senderTin: "104123456"
senderZipCode: "10282"
}
]
) {
statements {
recordNumber
uploaderId
statement {
otxId
uploaderId
recipientFirstName
recipientLastName
tags
}
messages
}
errors
}
}