GET api/Deployment?Id={Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Deployment| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ParentId | integer |
None. |
|
| ClientId | globally unique identifier |
None. |
|
| Schedule | date |
None. |
|
| BuildNumber | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedAt | date |
None. |
|
| StatusId | Status |
None. |
|
| StatusDescription | string |
None. |
|
| ReleaseTags | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"ParentId": 2,
"ClientId": "fb663821-2fa8-4804-aaf2-a97515cf0bac",
"Schedule": "2026-04-04T05:51:56.3734975+00:00",
"BuildNumber": 5,
"CreatedBy": 6,
"CreatedAt": "2026-04-04T05:51:56.3734975+00:00",
"StatusId": 0,
"StatusDescription": "Scheduled",
"ReleaseTags": "sample string 8"
}
text/html
Sample:
{"Id":1,"ParentId":2,"ClientId":"fb663821-2fa8-4804-aaf2-a97515cf0bac","Schedule":"2026-04-04T05:51:56.3734975+00:00","BuildNumber":5,"CreatedBy":6,"CreatedAt":"2026-04-04T05:51:56.3734975+00:00","StatusId":0,"StatusDescription":"Scheduled","ReleaseTags":"sample string 8"}
application/xml, text/xml
Sample:
<Deployment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KnowledgeBase.Deployments"> <BuildNumber>5</BuildNumber> <ClientId>fb663821-2fa8-4804-aaf2-a97515cf0bac</ClientId> <CreatedAt>2026-04-04T05:51:56.3734975+00:00</CreatedAt> <CreatedBy>6</CreatedBy> <Id>1</Id> <ParentId>2</ParentId> <ReleaseTags>sample string 8</ReleaseTags> <Schedule>2026-04-04T05:51:56.3734975+00:00</Schedule> <StatusId>Scheduled</StatusId> </Deployment>