Enable Flow User During Salesforce Profile Provisioning

Sivagami
All-Star
All-Star

We have a requirement from one of the Salesforce teams to enable Flow User Checkbox when creating a new user.

I couldn't find the Flow User attribute in salesforce documentation. Could you please assist with the right attribute?

https://docs.saviyntcloud.com/bundle/Salesforce-v2022x/page/Content/Configuring-the-Integration-for-... 

Sivagami_0-1686838045251.png

If I want to enable, Marketing user, I was able to find the attribute - 

 

"UserPermissionsMarketingUser": true

 

I tried something like below for Flow user but didn't work.

 

"UserPermissionsFlowUser": true

 

It's throwing an error below which means it's not the correct attribute. Please help with the right attribute to use.

 

Error in user creation errorCode: INVALID_FIELDmessage: No such column 'UserPermissionsFlowUser' on sobject of type User

 

-Siva

3 REPLIES 3

SB
Saviynt Employee
Saviynt Employee

Can you confirm if you are able to set this value from Postman. If this is working from postman, can you share the export of the payload you are using.


Regards,
Sahil

dgandhi
All-Star
All-Star

Can you check below and see if it helps?

UserPermissionsInteractionUser

https://salesforce.stackexchange.com/questions/29426/how-do-i-audit-which-users-are-marked-as-force-...

 

 

Thanks,
Devang Gandhi
If this reply answered your question, please click the Accept As Solution button to help future users who may have a similar problem.

Sivagami
All-Star
All-Star

Thanks @dgandhi ! It did help. I cross referenced with one of the salesforce developers and found that the right attribute name can be found from this documentation - https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_... 

Passing it in the OOTB connector did help set the checkbox.

 

  "UserPermissionsInteractionUser": true,

 

-Siva