POST api/hobbies/create
Request Information
URI Parameters
None.
Body Parameters
hobby| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ProfileId | globally unique identifier |
None. |
|
| Category | string |
None. |
|
| Type | string |
None. |
|
| Name | string |
None. |
|
| Title | 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
Hobbys| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileId | globally unique identifier |
None. |
|
| Category | string |
None. |
|
| Type | string |
None. |
|
| Name | string |
None. |
|
| Title | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProfileId": "8b022a17-b078-463b-b176-fa7ba883fce2",
"Category": "sample string 2",
"Type": "sample string 3",
"Name": "sample string 4",
"Title": "sample string 5",
"Id": "ff3ea97f-20cf-4e39-8641-1fe64d5b6a5d",
"CreatedDate": "2025-12-05T20:24:01.8856995-08:00",
"ModifiedDate": "2025-12-05T20:24:01.8856995-08:00",
"DeletedDate": "2025-12-05T20:24:01.8856995-08:00"
}
application/xml, text/xml
Sample:
<Hobbys xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:24:01.8856995-08:00</CreatedDate> <DeletedDate>2025-12-05T20:24:01.8856995-08:00</DeletedDate> <Id>ff3ea97f-20cf-4e39-8641-1fe64d5b6a5d</Id> <ModifiedDate>2025-12-05T20:24:01.8856995-08:00</ModifiedDate> <Category>sample string 2</Category> <Name>sample string 4</Name> <ProfileId>8b022a17-b078-463b-b176-fa7ba883fce2</ProfileId> <Title>sample string 5</Title> <Type>sample string 3</Type> </Hobbys>