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

Compare with Current View Page History

Version 1 Next »

REST API Method: GET /rest/dspcard

Retrieves all resource schema elements and values of a DSP Card based on a requested ID.

If no ID is specified in the GET, a listing of all DSP Cards will be returned along with their associated IDs. These identifiers can be used to collect resource schema element values via the GET dspcard id method.

URL:

https://134.56.227.163/rest/dspcard

HTTP Method

GET

Requires Authentication:

true

Parameters

Name Required Values Description
filterNo
  • runtime
  • inventory
The type of filtered information in the response. If no filters are specified, all get applied.

Usage Example: (about cURL | requires a session token)

curl --cookie PHPSESSID=ima0r3nkaeg8mo0suln67vg4m7 --cacert 134.56.227.163.crt 
-i https://134.56.227.163/rest/dspcard

Response:

<?xml version="1.0"?> 
<root>
   <status>
     <http_code>200</http_code>
   </status>
   <dspcard_list count="3">
       <dspcard_pk id="1" href="https://134.56.227.163/rest/dspcard/1"/>
       <dspcard_pk id="2" href="https://134.56.227.163/rest/dspcard/2"/>
       <dspcard_pk id="3" href="https://134.56.227.163/rest/dspcard/3"/>
   </dspcard_list>
</root>
  • No labels