POST api/Account/Authenticate
Request Information
URI Parameters
None.
Body Parameters
AccountAuthenticationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AgriaId | string |
None. |
|
| BrandId | globally unique identifier |
None. |
|
| EmailAddress | string |
None. |
|
| Password | string |
None. |
|
| Postcode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AgriaId": "sample string 1",
"BrandId": "e2ed7377-6c48-4af0-81a4-097200aac8b7",
"EmailAddress": "sample string 2",
"Password": "*******",
"Postcode": "sample string 4"
}
application/xml, text/xml
Sample:
<AccountAuthenticationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models"> <AgriaId>sample string 1</AgriaId> <BrandId>e2ed7377-6c48-4af0-81a4-097200aac8b7</BrandId> <EmailAddress>sample string 2</EmailAddress> <Password>sample string 3</Password> <Postcode>sample string 4</Postcode> </AccountAuthenticationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Account| Name | Description | Type | Additional information |
|---|---|---|---|
| AffiliateId | globally unique identifier |
None. |
|
| AgriaId | string |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| SecurityRole | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"AffiliateId": "a662512e-3a75-4551-ad88-28a391151d5d",
"AgriaId": "sample string 1",
"CustomerId": "4773c445-c29a-4c38-b4a2-795234cbbe7d",
"SecurityRole": 2
}
application/xml, text/xml
Sample:
<Account xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models"> <AffiliateId>a662512e-3a75-4551-ad88-28a391151d5d</AffiliateId> <AgriaId>sample string 1</AgriaId> <CustomerId>4773c445-c29a-4c38-b4a2-795234cbbe7d</CustomerId> <SecurityRole>2</SecurityRole> </Account>