GET api/hobbies/byid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
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": "f692f1d6-435a-4ff4-a26e-3195890e2bdc",
"Category": "sample string 2",
"Type": "sample string 3",
"Name": "sample string 4",
"Title": "sample string 5",
"Id": "5547bbbf-185c-499e-abc9-f78980dc19ec",
"CreatedDate": "2025-12-05T20:24:11.6179238-08:00",
"ModifiedDate": "2025-12-05T20:24:11.6179238-08:00",
"DeletedDate": "2025-12-05T20:24:11.6179238-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:11.6179238-08:00</CreatedDate> <DeletedDate>2025-12-05T20:24:11.6179238-08:00</DeletedDate> <Id>5547bbbf-185c-499e-abc9-f78980dc19ec</Id> <ModifiedDate>2025-12-05T20:24:11.6179238-08:00</ModifiedDate> <Category>sample string 2</Category> <Name>sample string 4</Name> <ProfileId>f692f1d6-435a-4ff4-a26e-3195890e2bdc</ProfileId> <Title>sample string 5</Title> <Type>sample string 3</Type> </Hobbys>