POST user/add
Used to Create User in your Private Media Channel.
Request Information
URI Parameters
None.
Body Parameters
UserEntityName | Description | Type | Additional information |
---|---|---|---|
UserID |
User ID - Read Only |
integer |
None. |
HashKey |
Hash Key - Read Only |
string |
None. |
FullName |
Full Name |
string |
None. |
EmailAddress |
Email Address |
string |
None. |
RoleTitle |
Role Title |
string |
None. |
PicturePath |
Picture Path |
string |
None. |
CreatedOn |
Created On - Read Only |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserID": 1, "HashKey": "sample string 2", "FullName": "sample string 3", "EmailAddress": "sample string 4", "RoleTitle": "sample string 5", "PicturePath": "sample string 6", "CreatedOn": "sample string 7" }
application/xml, text/xml
Sample:
<UserEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.nichevid.com.Models"> <CreatedOn>sample string 7</CreatedOn> <EmailAddress>sample string 4</EmailAddress> <FullName>sample string 3</FullName> <HashKey>sample string 2</HashKey> <PicturePath>sample string 6</PicturePath> <RoleTitle>sample string 5</RoleTitle> <UserID>1</UserID> </UserEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.