POST api/services/create
Request Information
URI Parameters
None.
Body Parameters
service| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ProfileId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Title | string |
None. |
|
| Subtitle | string |
None. |
|
| Description | string |
None. |
|
| ImageUrl | string |
None. |
|
| VideoUrl | string |
None. |
|
| Price | integer |
None. |
|
| ContentText | string |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
|
| profile | profile |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Servicess| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileId | globally unique identifier |
None. |
|
| ImageUrl | string |
None. |
|
| VideoUrl | string |
None. |
|
| Name | string |
None. |
|
| Title | string |
None. |
|
| Subtitle | string |
None. |
|
| Description | string |
None. |
|
| ContentText | string |
None. |
|
| Price | integer |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProfileId": "92be74eb-ac3f-47a8-87c3-3eaec472ac65",
"ImageUrl": "sample string 2",
"VideoUrl": "sample string 3",
"Name": "sample string 4",
"Title": "sample string 5",
"Subtitle": "sample string 6",
"Description": "sample string 7",
"ContentText": "sample string 8",
"Price": 9,
"Id": "589b5f04-8835-42bc-9264-03b8fa1fbc51",
"CreatedDate": "2025-12-05T20:24:02.8946165-08:00",
"ModifiedDate": "2025-12-05T20:24:02.8946165-08:00",
"DeletedDate": "2025-12-05T20:24:02.8946165-08:00"
}
application/xml, text/xml
Sample:
<Servicess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:24:02.8946165-08:00</CreatedDate> <DeletedDate>2025-12-05T20:24:02.8946165-08:00</DeletedDate> <Id>589b5f04-8835-42bc-9264-03b8fa1fbc51</Id> <ModifiedDate>2025-12-05T20:24:02.8946165-08:00</ModifiedDate> <ContentText>sample string 8</ContentText> <Description>sample string 7</Description> <ImageUrl>sample string 2</ImageUrl> <Name>sample string 4</Name> <Price>9</Price> <ProfileId>92be74eb-ac3f-47a8-87c3-3eaec472ac65</ProfileId> <Subtitle>sample string 6</Subtitle> <Title>sample string 5</Title> <VideoUrl>sample string 3</VideoUrl> </Servicess>