GET Api/AssignedAttributes/{id}

Wyszukuje object AssignedAttribute po jego identyfikatorze

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

unikalny identyfikator obiektu

integer

Required

Body Parameters

None.

Response Information

Resource Description

obiekt AssignedAttribute posiadajÄ…cy wybrany identyfikator

AssignedAttributeDto
NameDescriptionTypeAdditional information
AssignedAttributeId

integer

Required

CustomAttributeId

integer

Required

ProfileId

string

Required

NumValue

decimal number

None.

TextValue

string

None.

BitValue

boolean

None.

AssignDate

date

None.

RemoveDate

date

None.

IsReadOnly

boolean

None.

IsExistForProfile

Is exist assigned attribute for profile.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "assignedAttributeId": 1,
  "customAttributeId": 2,
  "profileId": "sample string 3",
  "numValue": 1.0,
  "textValue": "sample string 4",
  "bitValue": true,
  "assignDate": "2024-05-18T07:12:35.9284193+00:00",
  "removeDate": "2024-05-18T07:12:35.9284193+00:00",
  "isReadOnly": true,
  "isExistForProfile": true
}

multipart/form-data

Sample:
{"assignedAttributeId":1,"customAttributeId":2,"profileId":"sample string 3","numValue":1.0,"textValue":"sample string 4","bitValue":true,"assignDate":"2024-05-18T07:12:35.9284193+00:00","removeDate":"2024-05-18T07:12:35.9284193+00:00","isReadOnly":true,"isExistForProfile":true}

application/xml, text/xml

Sample:
<AssignedAttributeDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <AssignedAttributeId>1</AssignedAttributeId>
  <CustomAttributeId>2</CustomAttributeId>
  <ProfileId>sample string 3</ProfileId>
  <NumValue>1</NumValue>
  <TextValue>sample string 4</TextValue>
  <BitValue>true</BitValue>
  <AssignDate />
  <RemoveDate />
  <IsReadOnly>true</IsReadOnly>
  <IsExistForProfile>true</IsExistForProfile>
</AssignedAttributeDto>