POST api/User
Request Information
URI Parameters
None.
Body Parameters
UserName | Description | Type | Additional information |
---|---|---|---|
UsuCodigo | string |
None. |
|
Password | string |
None. |
|
IOS | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UsuCodigo": "sample string 1", "Password": "sample string 2", "IOS": "sample string 3" }
application/xml, text/xml
Sample:
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MBAMovilCoreService.Controllers"> <IOS>sample string 3</IOS> <Password>sample string 2</Password> <UsuCodigo>sample string 1</UsuCodigo> </User>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of Dictionary of string [key] and Object [value]Response Formats
application/json, text/json
Sample:
[ { "sample string 1": {}, "sample string 3": {} }, { "sample string 1": {}, "sample string 3": {} } ]
application/xml, text/xml
Sample:
<ArrayOfArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <ArrayOfKeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 1</Key> <Value /> </KeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 3</Key> <Value /> </KeyValueOfstringanyType> </ArrayOfKeyValueOfstringanyType> <ArrayOfKeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 1</Key> <Value /> </KeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 3</Key> <Value /> </KeyValueOfstringanyType> </ArrayOfKeyValueOfstringanyType> </ArrayOfArrayOfKeyValueOfstringanyType>