GET api/Account?UUID={UUID}
Get account informations
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| UUID |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Authorize": true,
"FilePath": "sample string 8",
"Name": "sample string 3",
"Language": "sample string 4",
"SurName": "sample string 5",
"UserName": "sample string 6",
"UUID": "sample string 7",
"FileName": "sample string 8",
"AccountId": 9,
"ContractId": "sample string 10",
"Email": "sample string 11",
"GarageId": 12.0
}
application/xml, text/xml
Sample:
<Account xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Check.Models.Contract"> <AccountId xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">9</AccountId> <ContractId xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 10</ContractId> <Email xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 11</Email> <FileName xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 8</FileName> <FilePath xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 8</FilePath> <GarageId xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">12</GarageId> <Language xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 4</Language> <Name xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 3</Name> <SurName xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 5</SurName> <UUID xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 7</UUID> <UserName xmlns="http://schemas.datacontract.org/2004/07/Check.Project.Models.Contract">sample string 6</UserName> <Authorize>true</Authorize> </Account>