portalUserAdd
Add a user to a partner portal
The add user to portal mutation accepts the following input: PortalUserInput
It returns the following: PortalUserAddResponse
An example of the request is as follows:
mutation {
portalUserAdd(
input: {
guid: "guid-id"
updatedUser{
firstName: "John"
lastName: "Doe"
email: "someemail@boomi.com"
}
}
){
message
}
}
portalUserAdd(
input: PortalUserInput!
): PortalUserResponse!
Arguments
portalUserAdd.input ● PortalUserInput! non-null input partner-portal
Type
PortalUserResponse object partner-portal
Was this topic helpful?