Working with ServiceNow REST APIs

  • Rversion finale: Australia
  • Mis à jour 12 mars 2026
  • 1 minute de lecture
  • Financial Services Operations (FSO) leverages the REST Table API to enable external sources, such as bank applications, to interact with the FSO data stored on a ServiceNow instance. The Table API provides endpoints that enable you to perform all CRUD operations (create, read, update, and delete) on your FSO centric tables from an external source.

    For example, you will use this API to locate customer records and query specific FSO information, such as customer credit cards, payments, and loans. For additional information on the available tables within FSO, see Financial Services Operations Core and the FSO table definitions.

    You must ensure that the user that you use when calling these REST endpoints has the required roles assigned to them. The following are the roles required based on the table that you are trying to access:
    • Financial Services Payment Operations: sn_bom_payment.admin and admin
    • Financial Services Card Operations: sn_bom_card.admin and admin
    • Financial Services Business Loan Operations: sn_bom_loan_b2b.admin and admin
    • Financial Services Personal Loan Operations: sn_bom_loan.b2c_admin and admin

    For a list of all of the FSO roles and descriptions, see User roles and FSO Business rules.

    Test driving ServiceNow® REST APIs

    The ServiceNow platform provides the REST API Explorer, which allows you to access the available REST APIs within your instance. Use this tool to interact with the various FSO tables within your instance before trying to implement the endpoint calls within your application.