POST api/InstituteFacilitator/AddPlayerParent
Request Information
URI Parameters
None.
Body Parameters
RegisterPlayerParentName | Description | Type | Additional information |
---|---|---|---|
string |
Required |
||
Password | string |
Required Data type: Password Matching regular expression pattern: ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^\da-zA-Z]).{8,32}$ String length: inclusive between 8 and 100 |
|
FirstName | string |
Required Matching regular expression pattern: ^[a-zA-Z ]*$ |
|
LastName | string |
Matching regular expression pattern: ^[a-zA-Z]*$ |
|
UserID | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{ "Email": "sample string 1", "Password": "sample string 2", "FirstName": "sample string 3", "LastName": "sample string 4", "UserID": "3adb96ee-bb9b-46f6-82ea-ef7b5090c1b3" }
application/xml, text/xml
Sample:
<RegisterPlayerParent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Models"> <Email>sample string 1</Email> <FirstName>sample string 3</FirstName> <LastName>sample string 4</LastName> <Password>sample string 2</Password> <UserID>3adb96ee-bb9b-46f6-82ea-ef7b5090c1b3</UserID> </RegisterPlayerParent>
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.