Get All Targeted PBNs
Use this API to get all the targeted PBNs received from Juniper Support System (JSS).
URI
https://[host]/api/juniper/serviceinsight/pbn-management/targetedPbns (HTTP method = GET)
Consumes
None
Produces
application/vnd.juniper.serviceinsight.pbn-management.targetedPbns+xml;version=1;
application/vnd.juniper.serviceinsight.pbn-management.targetedPbns+json;version=1;
Response Elements
Element | Type | Description |
---|---|---|
uri | String | URI of the collection of targeted PBNs |
size | Integer | Number of records in the collection |
targeted_Pbn | targeted_Pbn | A targeted PBN |
uri | String | URI of the targeted PBN |
key | Integer | ID of the targeted PBN |
title | String | Title of the targeted PBN |
issueDate | String | 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 releases in which the issue identified by the targeted PBN is resolved |
Sample Output
Sample XML Output
<targeted-Pbns size="2" uri="/api/juniper/serviceinsight/pbn-management/targetedPbns"> <targeted-Pbn uri="/api/juniper/serviceinsight/pbn-management/targetedPbns/131077" key="131077"> <title> In NSR scenario, rpd (routing process) cored during BGP session flapping. </title> <issueDate>2015-09-17 07:00:00 UTC</issueDate> <juniperId>736198</juniperId> <organization>sampleorganization</organization> <resolvedIn> 10.4R12 11.4R5-S3 11.4R6 12.1R5 12.1X48-D60 12.2R2 12.3R1 13.1R1 </resolvedIn> </targeted-Pbn> <targeted-Pbn uri="/api/juniper/serviceinsight/pbn-management/targetedPbns/131078" key="131078"> <title>PFE crash due to memory corruption.</title> <issueDate>2015-09-17 07:00:00 UTC</issueDate> <juniperId>754669</juniperId> <organization>sampleorganization</organization> <resolvedIn>10.4R11 11.2R8 11.4R5 12.1R3 12.2R1 12.3R1</resolvedIn> </targeted-Pbn> </targeted_Pbns>
Sample JSON Output
{ "targeted-Pbns": { "@size": "10", "@uri": "/api/juniper/serviceinsight/pbn-management/targetedPbns", "targeted-Pbn": [ { "@uri": "/api/juniper/serviceinsight/pbn-management/targetedPbns/131077", "@key": "131077", "title": "In NSR scenario, rpd (routing process) cored during BGP session flapping.", "issueDate": "2015-09-17 07:00:00 UTC", "juniperId": 736198, ”organization”:”sampleorganization”, "resolvedIn": "10.4R12 11.4R5-S3 11.4R6 12.1R5 12.1X48-D60 12.2R2 12.3R1 13.1R1" }, { "@uri": "/api/juniper/serviceinsight/pbn-management/targetedPbns/131078", "@key": "131078", "title": "PFE crash due to memory corruption.", "issueDate": "2015-09-17 07:00:00 UTC", "juniperId": 754669, "organization":"sampleorganization"”, "resolvedIn": "10.4R11 11.2R8 11.4R5 12.1R3 12.2R1 12.3R1" } } } }