Related Documentation
- Junos Space
- Get All Organizations in Service Now
- Get information about an Organization
- Add an Organization
- Check Organization Status
- Get Information About Sites
- Get JMB Filter Levels Info
- Get Case Submission Values
- Modify an Organization
- Associate an Address Group with an Organization
- Delete an Organization by Organization ID
- Add an End Customer Organization in Partner Proxy Mode
- Update Core File Information for an End Customer
- View Organization Messages
Modify an End-Customer Organization in Partner Proxy Mode
After you configure Service Now to run in Partner Proxy mode, you can add multiple end customers and manage end-customer Service Now applications over a secure https connection. The Service Now partner can communicate with the end customer only after the Service Now application of an end customer is activated.
Use this API to update an end-customer organization added to a Service Now partner.
URI
https://[host]/api/juniper/servicenow/organization-management/organization/{id}/ modifyconnectedmember (HTTP method = POST)
URI Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id | Integer | Yes | ID of the end-customer organization to be modified |
Consumes
- application/vnd.juniper.servicenow.organization-management.connectedmember+xml; version=4;charset=UTF-8
- application/vnd.juniper.servicenow.organization-management.connectedmember+json; version=4;charset=UTF-8
Request Elements
Element | Type | Description |
---|---|---|
siteName | String | Site Name associated with the end-customer organization |
userName | String | Username to authenticate the end customer site |
password | String | Password to authenticate the end customer site Note: The password needs to be Base64 encrypted. |
jmbFilterValue | String | JMB filter level configured for the organization: Possible values:
|
overrideECAddress | Boolean | Flag to indicate if the address associated with a device by the end customer should be overridden in the Service Now partner Possible values:
|
domainId | Integer | ID of the domain to which the organization belongs This is an optional element. The value provided in this element is ignored if the value is invalid or a domainId other than the current domainId is provided. |
Produces
- application/vnd.juniper.servicenow.organization-management.servicenowmsg+xml;version=4
- application/vnd.juniper.servicenow.organization-management.servicenowmsg+json;version=4
Response Elements
Element | Type | Description |
---|---|---|
msg | String | Status message of the modify end-customer organization job |
Sample Input
When modifying an end customer,, list only attributes to be updated. In the following examples, the site name and overrideECAddress attributes are updated.
Sample XML Input
<connectedmember> <siteName>modifiedConnectedMember</siteName> <overrideECAddress>false</overrideECAddress> </connectedmember>
Sample JSON Input
{ "connectedmember": { "siteName": "sampleConnectedMember", "overrideECAddress ": false, } }
![]() | Note:
|
Sample Output
Sample XML Output
<servicenowmsg> <msg>Connected Member updated successfully</msg> </servicenowmsg>
Sample JSON Output
{ "servicenowmsg": { "msg":" Connected Member updated successfully " } }
Response Status Code
Message | Description |
---|---|
503 Service Unavailable | Service Now is not operating in Partner Proxy mode and an end-customer organization cannot be modified when Service Now is not operating in Partner Proxy mode. |
404 Not Found | Invalid end-customer ID specified |
400 Bad Request | One of the following:
|
Related Documentation
- Junos Space
- Get All Organizations in Service Now
- Get information about an Organization
- Add an Organization
- Check Organization Status
- Get Information About Sites
- Get JMB Filter Levels Info
- Get Case Submission Values
- Modify an Organization
- Associate an Address Group with an Organization
- Delete an Organization by Organization ID
- Add an End Customer Organization in Partner Proxy Mode
- Update Core File Information for an End Customer
- View Organization Messages