GET v1/Activity/Contribution/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ActivityContributionViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Speakers | Collection of GuidName |
None. |
Response Formats
application/json, text/json
Sample:
{
"Guid": "a5ed4c90-e92a-49e0-b077-49b33b68a8ed",
"Name": "sample string 2",
"Speakers": [
{
"Guid": "3e10a8d9-b058-4e7d-8911-be2d3fcd400f",
"Name": "sample string 2"
},
{
"Guid": "3e10a8d9-b058-4e7d-8911-be2d3fcd400f",
"Name": "sample string 2"
}
]
}
application/octet-stream
Sample:
{"Guid":"a5ed4c90-e92a-49e0-b077-49b33b68a8ed","Name":"sample string 2","Speakers":[{"Guid":"3e10a8d9-b058-4e7d-8911-be2d3fcd400f","Name":"sample string 2"},{"Guid":"3e10a8d9-b058-4e7d-8911-be2d3fcd400f","Name":"sample string 2"}]}
application/xml, text/xml
Sample:
<ActivityContributionViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.Small">
<Guid>a5ed4c90-e92a-49e0-b077-49b33b68a8ed</Guid>
<Name>sample string 2</Name>
<Speakers xmlns:d2p1="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.Common">
<d2p1:GuidName>
<d2p1:Guid>3e10a8d9-b058-4e7d-8911-be2d3fcd400f</d2p1:Guid>
<d2p1:Name>sample string 2</d2p1:Name>
</d2p1:GuidName>
<d2p1:GuidName>
<d2p1:Guid>3e10a8d9-b058-4e7d-8911-be2d3fcd400f</d2p1:Guid>
<d2p1:Name>sample string 2</d2p1:Name>
</d2p1:GuidName>
</Speakers>
</ActivityContributionViewModel>