Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

ServiceNow to SailPoint Integration

s r1
Tera Contributor

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? 

1 REPLY 1

williame
Tera Contributor

Were you able to come up with a solution?