POST api/Shared/getTherapeuticByCategoryIds?loginId={loginId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
loginId

globally unique identifier

Required

Body Parameters

Collection of integer

Request Formats

application/json, text/json

Sample:
[
  1,
  2
]

application/xml, text/xml

Sample:
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <int>1</int>
  <int>2</int>
</ArrayOfint>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of TherapeuticAreaDto
NameDescriptionTypeAdditional information
ta_id

integer

None.

ta_name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ta_id": 1,
    "ta_name": "sample string 2"
  },
  {
    "ta_id": 1,
    "ta_name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTherapeuticAreaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LookBook_Api.Models.Dto">
  <TherapeuticAreaDto>
    <ta_id>1</ta_id>
    <ta_name>sample string 2</ta_name>
  </TherapeuticAreaDto>
  <TherapeuticAreaDto>
    <ta_id>1</ta_id>
    <ta_name>sample string 2</ta_name>
  </TherapeuticAreaDto>
</ArrayOfTherapeuticAreaDto>