POST api/Deployment
Request Information
URI Parameters
None.
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ParentId": 2,
"ClientId": "2dad8ada-9bcf-45b4-bd33-1d5e583879fc",
"Schedule": "2026-04-04T05:50:22.1824018+00:00",
"BuildNumber": 5,
"CreatedBy": 6,
"CreatedAt": "2026-04-04T05:50:22.1824018+00:00",
"StatusId": 0,
"StatusDescription": "Scheduled",
"ReleaseTags": "sample string 8"
}
text/html
Sample:
{"Id":1,"ParentId":2,"ClientId":"2dad8ada-9bcf-45b4-bd33-1d5e583879fc","Schedule":"2026-04-04T05:50:22.1824018+00:00","BuildNumber":5,"CreatedBy":6,"CreatedAt":"2026-04-04T05:50:22.1824018+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>2dad8ada-9bcf-45b4-bd33-1d5e583879fc</ClientId> <CreatedAt>2026-04-04T05:50:22.1824018+00:00</CreatedAt> <CreatedBy>6</CreatedBy> <Id>1</Id> <ParentId>2</ParentId> <ReleaseTags>sample string 8</ReleaseTags> <Schedule>2026-04-04T05:50:22.1824018+00:00</Schedule> <StatusId>Scheduled</StatusId> </Deployment>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |