POST associations({associationId})/representatives/status/video
Method to post videos to a status update
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
associationId | No documentation available. |
Define this parameter in the request URI. |
statusUpdateVideoResource | Data about the video |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "Id": 1, "StatusUpdateId": 2, "VideoUrl": "sample string 3", "EmbedCodeHtml": "sample string 4" }
application/xml, text/xml
Sample:
<StatusUpdateVideoResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources"> <EmbedCodeHtml>sample string 4</EmbedCodeHtml> <Id>1</Id> <StatusUpdateId>2</StatusUpdateId> <VideoUrl>sample string 3</VideoUrl> </StatusUpdateVideoResource>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Newly inserted video resource
Response body formats
application/json, text/json
Sample:
{ "Id": 1, "StatusUpdateId": 2, "VideoUrl": "sample string 3", "EmbedCodeHtml": "sample string 4" }
application/xml, text/xml
Sample:
<StatusUpdateVideoResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources"> <EmbedCodeHtml>sample string 4</EmbedCodeHtml> <Id>1</Id> <StatusUpdateId>2</StatusUpdateId> <VideoUrl>sample string 3</VideoUrl> </StatusUpdateVideoResource>