POST api/AddUserAttributeValueTransaction

Request Information

URI Parameters

None.

Body Parameters

AttributeValueModel
NameDescriptionTypeAdditional information
STUDENT_ID

integer

None.

ATTR_MSTR_ID

integer

None.

ATTR_VAL_ID

integer

None.

TXN_DATE

date

None.

REMARKS

string

None.

Request Formats

application/json, text/json

Sample:
{
  "STUDENT_ID": 1,
  "ATTR_MSTR_ID": 2,
  "ATTR_VAL_ID": 3,
  "TXN_DATE": "2026-01-09T13:54:58.895352+00:00",
  "REMARKS": "sample string 5"
}

application/xml, text/xml

Sample:
<AttributeValueModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.CheckinModels">
  <ATTR_MSTR_ID>2</ATTR_MSTR_ID>
  <ATTR_VAL_ID>3</ATTR_VAL_ID>
  <REMARKS>sample string 5</REMARKS>
  <STUDENT_ID>1</STUDENT_ID>
  <TXN_DATE>2026-01-09T13:54:58.895352+00:00</TXN_DATE>
</AttributeValueModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />