POST api/accounts/register
Request Information
URI Parameters
None.
Body Parameters
RegisterFirebaseBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| phoneNumber | string |
Required |
|
| displayName | string |
Required |
|
| apiKey | string |
Required |
|
| secretKey | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"phoneNumber": "sample string 1",
"displayName": "sample string 2",
"apiKey": "sample string 3",
"secretKey": "sample string 4"
}
application/xml, text/xml
Sample:
<RegisterFirebaseBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccountAPI.Models.Account"> <apiKey>sample string 3</apiKey> <displayName>sample string 2</displayName> <phoneNumber>sample string 1</phoneNumber> <secretKey>sample string 4</secretKey> </RegisterFirebaseBindingModel>
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.