Back

GET api/v1/Users?address={address}

Requires Authorization

Get user information by email address.
Note: Request url should add a trailing '/' at the end.For example: api/v1/Users/user@example.com/

Request Information

URI Parameters

NameDescriptionTypeAdditional information
address

User's email address

string

Required

Body Parameters

None.

Sample Request

Response Information

Resource Description

UserViewModel
NameDescriptionTypeAdditional information
Name

User name

string

None.

Address

User email Address

string

None.

Language

User's default culture / language

string

None.

CreatedDate

User record creation date

date

None.

Customer

Customer the User is associated with

CustomerInfoViewModel

None.

Domain

Domain the user is associated with

DomainInfoViewModel

None.

Ip

Ip address the user is associated with

IpInfoViewModel

None.

Sample Response

application/json, text/json

Sample:
{
  "Name": "J Smith",
  "Address": "jsmith@example.com",
  "Language": "en-us",
  "CreatedDate": "2016-03-01T11:10:25",
  "Customer": {
    "Name": "Customer and Company",
    "ReferenceKey": null
  },
  "Domain": {
    "DomainId": 1,
    "Name": "rpost.com"
  },
  "Ip": null
}