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": "3355a009-1454-4977-beed-bbba243dbde9",
"Name": "sample string 2",
"Speakers": [
{
"Guid": "1f442525-6c18-47b9-9e82-d24654a5473a",
"Name": "sample string 2"
},
{
"Guid": "1f442525-6c18-47b9-9e82-d24654a5473a",
"Name": "sample string 2"
}
]
}
application/octet-stream
Sample:
{"Guid":"3355a009-1454-4977-beed-bbba243dbde9","Name":"sample string 2","Speakers":[{"Guid":"1f442525-6c18-47b9-9e82-d24654a5473a","Name":"sample string 2"},{"Guid":"1f442525-6c18-47b9-9e82-d24654a5473a","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>3355a009-1454-4977-beed-bbba243dbde9</Guid>
<Name>sample string 2</Name>
<Speakers xmlns:d2p1="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.Common">
<d2p1:GuidName>
<d2p1:Guid>1f442525-6c18-47b9-9e82-d24654a5473a</d2p1:Guid>
<d2p1:Name>sample string 2</d2p1:Name>
</d2p1:GuidName>
<d2p1:GuidName>
<d2p1:Guid>1f442525-6c18-47b9-9e82-d24654a5473a</d2p1:Guid>
<d2p1:Name>sample string 2</d2p1:Name>
</d2p1:GuidName>
</Speakers>
</ActivityContributionViewModel>