Skip to content

[USERPROV-28] Adding Processor Report Access Support #1516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ GET https://us2.api.concursolutions.com/profile/spend/v4.1/Users?startIndex=1&co
"urn:ietf:params:scim:schemas:extension:spend:2.0:UserPreference": {
"showImagingIntro": true,
"expenseAuditRequired": "REQUIRED",
"processorReportAccess": "COMPLETE",
"allowCreditCardTransArrivalEmails": true,
"allowReceiptImageAvailEmails": true,
"promptForCardTransactionsOnReport": true,
Expand Down Expand Up @@ -202,6 +203,7 @@ GET https://us2.api.concursolutions.com/profile/spend/v4.1/Users?startIndex=1&co
"urn:ietf:params:scim:schemas:extension:spend:2.0:UserPreference": {
"showImagingIntro": true,
"expenseAuditRequired": "REQUIRED",
"processorReportAccess": "COMPLETE",
"allowCreditCardTransArrivalEmails": true,
"allowReceiptImageAvailEmails": true,
"promptForCardTransactionsOnReport": true,
Expand Down Expand Up @@ -333,6 +335,7 @@ GET https://us2.api.concursolutions.com/profile/spend/v4.1/Users/aaaaaeee-xxxx-z
"urn:ietf:params:scim:schemas:extension:spend:2.0:UserPreference": {
"showImagingIntro": false,
"expenseAuditRequired": "ALWAYS",
"processorReportAccess": "COMPLETE",
"allowCreditCardTransArrivalEmails": false,
"allowReceiptImageAvailEmails": false,
"promptForCardTransactionsOnReport": false,
Expand Down Expand Up @@ -599,6 +602,7 @@ User Preference Extension provides the properties of user's preference associate
|---|---|---|---|
|`showImagingIntro`|`boolean`|`true`/`false`| If `true`, displays imaging introduction. Default: `true` |
|`expenseAuditRequired`|`string`|-| Expense audit is required. Supported values: `NEVER`, `REQUIRED`, `ALWAYS`|
|`processorReportAccess`|`string`|-| Report access for processor roles (Expense Processor, Expense Processor Audit, Expense Processor Manager). Note that this field can only be modified if the user has one of the aforementioned roles. The field is `null` (all reports excluding returned reports) by default, but cannot be set back to `null` after it is modified. Supported values: `COMPLETE` (all reports including returned reports), `RESTRICTED` (only reports pending processor step and beyond)|
|`allowCreditCardTransArrivalEmails`|`boolean`|`true`/`false`| If `true`, allows credit card transaction arrival notification emails. Default: `true` |
|`allowReceiptImageAvailEmails`|`boolean`|`true`/`false`| If `true`, allows credit card transaction arrival notification emails. Default: `true` |
|`promptForCardTransactionsOnReport`|`boolean`|`true`/`false`| If `true`, displays a prompt for company card transactions when creating a new report. Default: `true` |
Expand Down