createNetsuiteCustomRecordInput
No description
input createNetsuiteCustomRecordInput {
recordType: String!
parentObject: String!
parentId: String!
fields: JSON!
}
Fields
createNetsuiteCustomRecordInput.recordType ● String! non-null scalar
Script id of the custom record type to create. Must be a seeded, creatable custom record type.
createNetsuiteCustomRecordInput.parentObject ● String! non-null scalar
Standard object the new record is parented to (Opportunity or Customer).
createNetsuiteCustomRecordInput.parentId ● String! non-null scalar
Internal id of the parent Opportunity/Customer record to link to.
createNetsuiteCustomRecordInput.fields ● JSON! non-null scalar
Map of { netsuiteField: value } for the record's writable fields.
Filtered server-side to the workspace-configured writable set; the
parent-link field is ignored here and always set from
parentObject/parentId.
Member Of
createNetsuiteCustomRecord mutation