GET api/Account?userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

Body Parameters

None.

Response Information

Resource Description

pUserProfileFetch_Result
NameDescriptionTypeAdditional information
UserProfileId

string

None.

FirstName

string

None.

LastName

string

None.

Company

string

None.

NewLetter

boolean

None.

RelationshipTypeId

integer

None.

PreferredLanguageId

integer

None.

LegacyPrimaryKey

string

None.

CreatedBy

string

None.

CreatedDate

date

None.

ModifiedBy

string

None.

ModifiedDate

date

None.

IsActive

boolean

None.

ZipPostalCode

string

None.

TrackingId

globally unique identifier

None.

PreferredLanguageThirdParty

string

None.

Response Formats

application/json, text/json

Sample:
{
  "UserProfileId": "sample string 1",
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "Company": "sample string 4",
  "NewLetter": true,
  "RelationshipTypeId": 1,
  "PreferredLanguageId": 1,
  "LegacyPrimaryKey": "sample string 5",
  "CreatedBy": "sample string 6",
  "CreatedDate": "2024-05-03T04:01:06.5434064-04:00",
  "ModifiedBy": "sample string 8",
  "ModifiedDate": "2024-05-03T04:01:06.5434064-04:00",
  "IsActive": true,
  "ZipPostalCode": "sample string 10",
  "TrackingId": "a9efc693-9c48-4378-86bc-91186dd0a1f8",
  "PreferredLanguageThirdParty": "sample string 11"
}

text/html

Sample:
{"UserProfileId":"sample string 1","FirstName":"sample string 2","LastName":"sample string 3","Company":"sample string 4","NewLetter":true,"RelationshipTypeId":1,"PreferredLanguageId":1,"LegacyPrimaryKey":"sample string 5","CreatedBy":"sample string 6","CreatedDate":"2024-05-03T04:01:06.5434064-04:00","ModifiedBy":"sample string 8","ModifiedDate":"2024-05-03T04:01:06.5434064-04:00","IsActive":true,"ZipPostalCode":"sample string 10","TrackingId":"a9efc693-9c48-4378-86bc-91186dd0a1f8","PreferredLanguageThirdParty":"sample string 11"}

application/xml, text/xml

Sample:
<pUserProfileFetch_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BMCAuthDataLayer">
  <Company>sample string 4</Company>
  <CreatedBy>sample string 6</CreatedBy>
  <CreatedDate>2024-05-03T04:01:06.5434064-04:00</CreatedDate>
  <FirstName>sample string 2</FirstName>
  <IsActive>true</IsActive>
  <LastName>sample string 3</LastName>
  <LegacyPrimaryKey>sample string 5</LegacyPrimaryKey>
  <ModifiedBy>sample string 8</ModifiedBy>
  <ModifiedDate>2024-05-03T04:01:06.5434064-04:00</ModifiedDate>
  <NewLetter>true</NewLetter>
  <PreferredLanguageId>1</PreferredLanguageId>
  <PreferredLanguageThirdParty>sample string 11</PreferredLanguageThirdParty>
  <RelationshipTypeId>1</RelationshipTypeId>
  <TrackingId>a9efc693-9c48-4378-86bc-91186dd0a1f8</TrackingId>
  <UserProfileId>sample string 1</UserProfileId>
  <ZipPostalCode>sample string 10</ZipPostalCode>
</pUserProfileFetch_Result>