Skip to main content

LeanIX ServiceNow Integration

  • January 9, 2025
  • 3 replies
  • 251 views

Hi,

I am service now developer and We got one requirement regarding service now leanix integration.

scenario -
we need to create some records in service now in custom table. only 7 fields there. these records will come from leanix side.

for this as per my knowledge, I need API from leanix with GET method for fetching the records from LeanIX.

Please guide me

3 replies

heng
Forum|alt.badge.img+1
  • Veteran
  • January 9, 2025

Hi Ashish

 

LeanIX has a out of the Box integration with a good documentation: ServiceNow Integration. The LeanIX Team can send you the records to your custom table as long as you give the integration API the necessary rights.

 

Regards 

 


  • Author
  • Rookie
  • January 9, 2025

Thank you Heng !!

 

 

 

 

 

 


  • Author
  • Rookie
  • January 9, 2025

Specific Implementation Details:

      Here are some additional tips by using APIs:

 

    * Leverage LeanIX's  API & ServiceNow's REST API  :

                                        If you need more flexibility or customization, we can directly use LeanIX's API to fetch data and then use ServiceNow's REST API  to import it into our custom table.

Service Now APIs details -

 HTTP Method   POST 

  URL                     https://<domain>.service-now.com/api/now/table/u_leanix_importtable

Headers

Content-Type-   application/json

Accept                 application/json

X-UserToken      303c13b7471ad610d1073464f26d43a0af0a27efcac8bbbb77fba152d21da17430d1300a

X-Transaction-Source    Interface=Web,Interface-Type=Classic Environment,Interface-Name=Unified Navigation App                                    

Request Body -

{

"u_external_id":"A10201",

"u_controlling_id":"CTR0021",

"u_controlling_name":"Cntrl Name",

"u_it_component_name":"Comnt Name",

"u_product_owner":"ABC",

"u_solution_res_e_domain_owner":"ABC",

"u_solution_subcategory":"Central",

"u_solution_id":"SLN0089",

"u_unit_owner":"ABC",

"u_solution_name":"Solution Name"

}

By following these steps and considering the additional factors, please let me know we can successfully integrate LeanIX data into your ServiceNow custom table via this.

 

Please suggest!!