You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »


REST API Credentials configuration guidelines can be found here.

ServiceNow Connector's Credentials type must always be specified as "servicenow".

Properties specific to the ServiceNow Connector's Credentials are described below.


ServiceNow Credentials Properties


FieldRequiredDefaultMultipleNotesExample
propertiesYes-NoConfiguration object
usernameYes-NoThe user name to be used to connect to the ServiceNow server."john.doe"
passwordYes-NoThe password to be used to connect to the ServiceNow server."myPassword"

Create example


POST /aspire/_api/credentials
{
  "type": "servicenow",
  "description": "ServiceNow Credentials Test",
   "properties": { 
       "username": "john.doe",
        "password": "myPassword"
   }
}



  • No labels