ServiceNow to SailPoint Integration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2024 04:21 AM
Requirement: Offboarding catalog item is present in service portal. When anyone submits this request, payload to be sent to Sailpoint.
Sailpoint Id to be given in URL and Sailpoint Account Name to be mentioned in payload. These two are mandatory and it uniquely identifies user in Sailpoint.
Sample Offboarding Request:
URL : https://sailpoint.api.identitynow.com/beta/non-employee-records/:ac1234a-123d-12c4-1234-1b123a123456
Payload:
{
"accountName": "acontractortest2@xyz.com",
"sourceId": "123456770123456749132123",
"manager": "123456789,
"firstName": "abel",
"lastName": "Test",
"email": "abeltest2@xyz.com",
"phone": "+9112345672332",
"startDate": "2023-08-28T18:30:00Z",
"endDate": "2023-09-19T18:30:00Z",
"data": {
"termRequested": "Yes",
}
}
Without creating custom table and new fields in sys_user table how to achieve the requirement?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2024 05:31 AM
Were you able to come up with a solution?