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": "6ea08072-43a0-42e2-81e2-bc13bf16b6ee",
"Schedule": "2025-12-25T15:54:57.5760602+00:00",
"BuildNumber": 5,
"CreatedBy": 6,
"CreatedAt": "2025-12-25T15:54:57.5760602+00:00",
"StatusId": 0,
"StatusDescription": "Scheduled",
"ReleaseTags": "sample string 8"
}
text/html
Sample:
{"Id":1,"ParentId":2,"ClientId":"6ea08072-43a0-42e2-81e2-bc13bf16b6ee","Schedule":"2025-12-25T15:54:57.5760602+00:00","BuildNumber":5,"CreatedBy":6,"CreatedAt":"2025-12-25T15:54:57.5760602+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>6ea08072-43a0-42e2-81e2-bc13bf16b6ee</ClientId> <CreatedAt>2025-12-25T15:54:57.5760602+00:00</CreatedAt> <CreatedBy>6</CreatedBy> <Id>1</Id> <ParentId>2</ParentId> <ReleaseTags>sample string 8</ReleaseTags> <Schedule>2025-12-25T15:54:57.5760602+00:00</Schedule> <StatusId>Scheduled</StatusId> </Deployment>