Related Documentation
Get Details of a Targeted PBN
Use this API to get details of a targeted PBN.
URI
https://[host]/api/juniper/serviceinsight/pbn-management/targetedPbns/{id} (HTTP method = GET)
URI Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id | Integer | Yes | ID of the targeted PBN whose details are to be viewed |
Consumes
None
Produces
- application/vnd.juniper.serviceinsight.pbn-management.targetedPbn+xml;version=1;
- application/vnd.juniper.serviceinsight.pbn-management.targetedPbn+json;version=1;
Response Elements
Element | Type | Description |
---|---|---|
uri | String | URI of the targeted PBN |
id | String | ID of the targeted PBN |
title | Integer | Title of the targeted PBN |
issueDate | Integer | Date and time the targeted PBN was issued |
juniperId | String | ID of the targeted PBN |
organization | String | Organization for which the PBN was received |
resolvedIn | String | Product release in which the problem is resolved |
customerImpact | String | Impact of the issue presented by the PBN on customers |
owner | String | User to whom the targeted PBN is assigned for ownership |
flaggedToUsers | String | Users to whom the PBN is flagged |
method | String | Method applicable to the PBN |
Sample Output
Sample XML Output
<targeted-Pbn uri="/api/juniper/serviceinsight/pbn-management/targetedPbns/1"> <id>1</id> <title>Sample TargetPBN</title> <issueDate>2015-03-25 13:09:56.0</issueDate> <juniperId>356789</juniperId> <organization>sampleorganization</organization> <resolvedIn>1112</resolvedIn> <customerImpact>None</customerImpact> <owner>super</owner> <flaggedToUsers>super</flaggedToUsers> <method href= "/api/juniper/serviceinsight/pbn-management/targetedPbns/1/scanForImpact" /> <method href= "/api/juniper/serviceinsight/pbn-management/targetedPbns/1/flagToUsers" /> <method href= "/api/juniper/serviceinsight/pbn-management/targetedPbns/1/assignOwnership" /> <method href= "/api/juniper/serviceinsight/pbn-management/targetedPbns/1" /> </targeted-Pbn>
Sample JSON Output
{ "targeted-Pbn": { "@uri": "/api/juniper/serviceinsight/pbn-management/targetedPbns/1", "id": "1", "title": "Sample TargetPBN", "issueDate": "2015-03-25 13:09:56.0", "juniperId": "356789", "organization":"sampleorganization", "resolvedIn": "1112", "customerImpact": "None", "owner": "super", "flaggedToUsers": "super", "method": [ { "@href": "/api/juniper/serviceinsight/pbn-management/targetedPbns/1/scanForImpact" }, { "@href": "/api/juniper/serviceinsight/pbn-management/targetedPbns/1/flagToUsers" }, { "@href": "/api/juniper/serviceinsight/pbn-management/targetedPbns/1/assignOwnership" }, { "@href": "/api/juniper/serviceinsight/pbn-management/targetedPbns/1" } ] } }