Project Stream API
Project Streams can be accessed and modified through this API using four services: GET, POST, PUT, and PATCH. These four services allow for the retrieval, creation, complete update, and partial update of Project Streams.
Authentication - Use Basic Authentication for this API.
GET
There are two implementations of GET. One will find a Project Stream with the given Id and return the JSON representation of the Project Stream. The other will find a list of Project Streams matching the query parameters supplied to it.
GET by ID
This GET service will find a Project Stream with the given Id and return the JSON representation of the object.
API URL
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream/{streamid}
Request
Parameter | Type | Required | Description |
---|---|---|---|
projectid | URL | Yes | This is a URL parameter for the Project Id which is searched to find and return a Stream |
streamid | URL | Yes | This is a URL parameter for the Project Stream Id which will be returned from the corresponding Project |
Response
Attributes | Type | Description |
---|---|---|
description | String | This is a description of the Project Stream |
isActive | Boolean | This is a Boolean that tracks whether or not the Project Stream is active |
attribute1 | String | This is the first attribute of the Project Stream |
attribute2 | String | This is the second attribute of the Project Stream |
attribute3 | String | This is the third attribute of the Project Stream |
versionSyntaxScript | String | This is the version syntax script of the Project Stream |
streamId | Long | This is the unique Id of the Project Stream |
streamName | String | This is the unique name of the Project Stream |
Response Codes
HTTP Code | Description |
---|---|
200 | Project Stream was found and returned |
400 | Bad request |
401 | Unauthorized |
404 | Project Stream not found |
500 | Unexpected internal server error |
Example
If we had a Project Stream in our database with an Id of 11101 belonging to a project with an Id of 10002 and the following attributes
{ "description": "Stream Descriptin", "isActive": true, "streamName": "FirstStream", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "three", "attribute2": "two", "attribute1": "one", "streamId": 11101 }
When we run a GET request at the following URL
http://host:port/flexdeploy/rest/v1/project/10002/stream/11101
The GET request would return the following JSON Project Stream object
{ "description": "Stream Descriptin", "isActive": true, "streamName": "FirstStream", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "three", "attribute2": "two", "attribute1": "one", "streamId": 11101 }
GET (Using Query Parameters)
This GET service will return a list of Project Streams from the specified project in the form of JSON objects based on the query parameter streamname. Project Streams are only returned if they match all of the specified query parameters and belong to the corresponding Project. If no query parameters are given this request will return the entire list of Streams within the specified Project.
API URLs
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream?
Append the following character sequences to the above URL to specify Query parameters.
Use '&' between successive query parameters:
streamName={streamName}
Examples:
To search by code only:
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream?streamName={name}
The query parameters are not case sensitive. Searching by name=NAME is the same as searching by name=name.
Request
Parameter | Type | Required | Description |
---|---|---|---|
projectId | URL | Yes | This is a URL path parameter for the Project Id which specifies the project which will be queried for Streams. |
streamName | URL | No | This is a URL query parameter for the name which is used to search the Streams of the queried Project. |
Response
Attributes | Type | Description |
---|---|---|
description | String | This is a description of the Project Stream |
isActive | Boolean | This is a Boolean that tracks whether or not the Project Stream is active |
attribute1 | String | This is the first attribute of the Project Stream |
attribute2 | String | This is the second attribute of the Project Stream |
attribute3 | String | This is the third attribute of the Project Stream |
versionSyntaxScript | String | This is the version syntax script of the Project Stream |
streamId | Long | This is the unique Id of the Project Stream |
streamName | String | This is the unique name of the Project Stream |
Response Codes
HTTP Code | Description |
---|---|
200 | Project Stream found and returned |
400 | Bad request |
401 | Unauthorized |
404 | Project with specified not found |
500 | Unexpected internal server error |
Example
If we had a Project (10002) with the following streams
[ { "description": "PUTted", "streamName": "PATCHStream1", "isActive": true, "streamId": 10003, "attribute2": "two", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "three", "attribute1": "PATCHoneStotle" }, { "description": "123", "streamName": "PostStream1", "isActive": true, "streamId": 10201, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }, { "description": "123", "streamName": "Stream2", "isActive": true, "streamId": 10004, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }, { "description": "123", "streamName": "Stream4", "isActive": true, "streamId": 10101, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }, { "description": "123", "streamName": "Stream5", "isActive": true, "streamId": 10102, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" } ]
When we run a GET request at the following URL
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream?streamName=Stream5
The GET request would return the following JSON Project Stream object
{ "description": "123", "streamName": "Stream5", "isActive": true, "streamId": 10102, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }
POST
This POST service will create a new Project Stream with the same attributes as the given JSON object.
API URL
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream
Request
Attributes | Type | Required | Description |
---|---|---|---|
description | String | No | This is a description of the Project Stream |
isActive | Boolean | No | This is a Boolean that tracks whether or not the Project Stream is active. If 'null' isActive defaults to 'true' |
attribute1 | String | No | This is the first attribute of the Project Stream |
attribute2 | String | No | This is the second attribute of the Project Stream |
attribute3 | String | No | This is the third attribute of the Project Stream |
versionSyntaxScript | String | Yes | This is the version syntax script of the Project Stream |
streamName | String | Yes | This is the unique name of the Project Stream |
projectId | URL | Yes | This is the Id of the project to add a new Stream to |
Response
Attributes | Type | Description |
---|---|---|
description | String | This is a description of the Project Stream |
isActive | Boolean | This is a Boolean that tracks whether or not the Project Stream is active |
attribute1 | String | This is the first attribute of the Project Stream |
attribute2 | String | This is the second attribute of the Project Stream |
attribute3 | String | This is the third attribute of the Project Stream |
versionSyntaxScript | String | This is the version syntax script of the Project Stream |
streamId | Long | This is the unique Id of the Project Stream |
streamName | String | This is the unique name of the Project Stream |
Response Codes
HTTP Code | Description |
---|---|
201 | Project Stream was created successfully |
400 | Bad request |
401 | Unauthorized |
404 | Project Stream not found |
500 | Unexpected internal server error |
Example
If the POST request receives the following JSON Project Stream object and the project id of 10237
{ "description": "123", "streamName": "NewStream", "isActive": true, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }
The following Project Stream object will then be created as a new Stream for Project 10237
{ "description": "123", "streamName": "NewStream", "isActive": true, "streamId": 12723, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }
PUT
This PUT service will update all attributes of a Project Stream with the given Ids based on the attributes of a JSON object parameters.
API URL
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream/{streamid}
Request
Attributes | Type | Required | Description |
---|---|---|---|
description | String | No | This is a description of the Project Stream |
isActive | Boolean | No | This is a Boolean that tracks whether or not the Project Stream is active. If 'null' isActive defaults to 'true' |
attribute1 | String | No | This is the first attribute of the Project Stream |
attribute2 | String | No | This is the second attribute of the Project Stream |
attribute3 | String | No | This is the third attribute of the Project Stream |
versionSyntaxScript | String | No | This is the version syntax script of the Project Stream |
streamId | Long | No | This is the Id of the Project Stream, can pass, but will not change the id of the stream |
streamName | String | No | This is the unique name of the Project Stream |
projectId | URL | Yes | This is the Id of the project to find the stream |
streamid | URL | Yes | This is the Id of the stream which will be updated |
Response
Attributes | Type | Description |
---|---|---|
description | String | This is a description of the Project Stream |
isActive | Boolean | This is a Boolean that tracks whether or not the Project Stream is active |
attribute1 | String | This is the first attribute of the Project Stream |
attribute2 | String | This is the second attribute of the Project Stream |
attribute3 | String | This is the third attribute of the Project Stream |
versionSyntaxScript | String | This is the version syntax script of the Project Stream |
streamId | Long | This is the unique Id of the Project Stream |
streamName | String | This is the unique name of the Project Stream |
Response Codes
HTTP Code | Description |
---|---|
200 | Project Stream was found and updated |
400 | Bad request |
401 | Unauthorized |
404 | Project Stream not found |
500 | Unexpected internal server error |
Example
If we had an Project Stream in our database with a Project Id of 25262, Stream Id of 12321 and the following attributes
{ "description": "123", "streamName": "NewStream", "isActive": true, "streamId": 12321, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }
When we run a PUT request at the following URL
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream/{streamid}
And the PUT request receives the following JSON Project Stream object,
{ "description": "UpdateDescription", "streamName": "UpdatedStream", "isActive": true, "streamId": 12723, "attribute2": null, "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": null, "attribute1": "1" }
The PUT request would then update the Project Stream with Id 11101 and return the following JSON Project Stream object
{ "description": "UpdateDescription", "streamName": "UpdatedStream", "isActive": true, "streamId": 12321, "attribute2": null, "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": null, "attribute1": "1" }
PATCH
This PATCH service will update an existing Project Stream with the information passed through a JSON object. If an attribute of the JSON is null it will not be updated in the Project Stream.
API URL
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream/{streamid}
Request
Attributes | Type | Required | Description |
---|---|---|---|
description | String | No | This is a description of the Project Stream |
isActive | Boolean | No | This is a Boolean that tracks whether or not the Project Stream is active. If 'null' isActive defaults to 'true' |
attribute1 | String | No | This is the first attribute of the Project Stream |
attribute2 | String | No | This is the second attribute of the Project Stream |
attribute3 | String | No | This is the third attribute of the Project Stream |
versionSyntaxScript | String | No | This is the version syntax script of the Project Stream |
streamId | Long | No | This is the unique Id of the Project Stream |
streamName | String | No | This is the unique name of the Project Stream |
projectId | URL | Yes | This is the Id of the project to find the stream to update |
streamid | URL | Yes | This is the Id of the stream that is being updated |
Response
Attributes | Type | Description |
---|---|---|
description | String | This is a description of the Project Stream |
isActive | Boolean | This is a Boolean that tracks whether or not the Project Stream is active |
attribute1 | String | This is the first attribute of the Project Stream |
attribute2 | String | This is the second attribute of the Project Stream |
attribute3 | String | This is the third attribute of the Project Stream |
versionSyntaxScript | String | This is the version syntax script of the Project Stream |
streamId | Long | This is the unique Id of the Project Stream |
streamName | String | This is the unique name of the Project Stream |
Response Codes
HTTP Code | Description |
---|---|
200 | Project Stream was found and patched |
400 | Bad request |
401 | Unauthorized |
404 | Project Stream not found |
500 | Unexpected internal server error |
Example
If we had an Project Stream in our database with an Id of 12723 and had the following attributes
{ "description": "123", "streamName": "NewStream", "isActive": true, "streamId": 12723, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }
When we run a PATCH request at the following URL
http://host:port/flexdeploy/rest/v1/project/{projectid}/stream/12723
And the PATCH request receives the following JSON Project Stream object,
{ "description": "Patch Description", "streamName": "PatchStream" " }
The PATCH request would then update the Project Stream with Id 12723 and return the following JSON Project Stream object
{ "description": "Patch Description", "streamName": "PatchStream", "isActive": true, "streamId": 12723, "attribute2": "2", "versionSyntaxScript": "\"1.0.\" + SequenceNumber", "attribute3": "3", "attribute1": "1" }
- style