OBJECT
ProcessManualTrigger
link GraphQL Schema definition
- type ProcessManualTrigger implements ProcessActorInterface {
- # Which users are allowed to start the process: the process owner, selected users
- # and sales units, any user, or applications only.
- : ProcessRecordTriggerActorEnum!
- # Sales units whose members are allowed to start the process. Applies when the
- # actor is restricted to selected units and users.
- : [UUID!]!
- # Individual users allowed to start the process. Applies when the actor is
- # restricted to selected units and users.
- : [UUID!]!
- # Type of record whose changes start this process, such as Lead, Opportunity,
- # Account or Contact.
- : EntityNameEnum!
- # API name of the custom entity that starts this process. Set only when the
- # trigger entity type is a custom entity.
- : String
- }