Home > For Developers > Stream Data APIs > Get a Stream Record

Get a Stream Record

Get stream data record details.

 

Prerequisites

Details

Method: GET

URLhttps://us.pulpstream.com/vfr/api/streamRecords/{recordID}

 

Headers:

tenantId: {tenantId}

apiKey: {apiKey}

Content-Type: application/json

 

Response:

Here is a sample response:

{
 "message":"",
 "responseBody":
 {
   "id":"589...4d7c0",               --ID of the record
   "streamTemplateId":"d5b...c325",
   "name":"Incident Management",
    ...
   "string1":null,                   --text field ("string1" would be field name)
   "intnumber1":0,                   --integer field
   "double1":0.0,                    --decimal field
   "date1":null,                     --date field

   "boolean1":false,                 --checkbox field
   "smartObject1":null,       --reference to another smart object record
   "smartObject1Name":null,   --display name for the referenced record
    ...
   "dateCreated":"2016-04-29T06:40:31.000+0000",
   "createdBy":"2d07...f71f67",
   "createdByMap":null,
   "dateModified":null,
   "modifiedBy":null,
   "userObject1":null,
   "userObject1Name":null,
   "locationId":null

}