GET {apiVersion}/Users/Me

This endpoints is being used by the NewLead function to retrieve the user name

Request Information

URI Parameters

NameDescriptionTypeAdditional information
apiVersion

Required routing parameter defining which version of the API to call. Currently use "v1" for all API requests.

string

None.

Body Parameters

None.

Response Information

Resource Description

LoginUser
NameDescriptionTypeAdditional information
Database

string

None.

Username

string

None.

WhenChangedDateTime

Date\Time that the database record was last changed.

date

None.

WhoChanged

Initials of the user who last changed this record.

string

None.

WhenAddedDateTime

Date\Time that the database record was added.

date

None.

WhoAdded

Initials of the user who created this record.

string

None.

_links

Links to other API resources that are related to the information in this model. This is part of the HAL specification. This property is not required on PUT or POST requests to this endpoint.

None.

_embedded

Resources/models representing data that is related to the data in this model. This is part of the HAL specification. These models have their own HAL links and embedded resources. This property is not required on PUT or POST requests to this endpoint.

None.

Response Formats

application/hal+json

Sample:
{
  "WhenChangedDateTime": "2024-04-29T23:04:05-07:00",
  "WhoChanged": "sample string 1",
  "WhenAddedDateTime": "2024-04-29T23:04:05-07:00",
  "WhoAdded": "sample string 2",
  "Database": "sample string 1",
  "Username": "sample string 2",
  "_links": {
    "self": {
      "href": "sample string 4"
    },
    "sample string 1": {
      "href": "sample string 2",
      "title": "sample string 3",
      "type": "sample string 4",
      "deprecation": "sample string 5",
      "name": "sample string 6",
      "profile": "sample string 7",
      "hreflang": "sample string 8"
    }
  },
  "_embedded": null
}