GET v1/Clients/{clientId}/SubProblemCodes

Gets all active Problem Codes that match the query, if provided.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

Client identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

A list.

Collection of SubProblemCodeV1
NameDescriptionTypeAdditional information
SubProblemCodeId

The Sub-Problem Code Id.

integer

None.

Code

The Code.

string

None.

ProblemCodeId

The Problem Code Id.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SubProblemCodeId": 1,
    "Code": "sample string 2",
    "ProblemCodeId": 3
  },
  {
    "SubProblemCodeId": 1,
    "Code": "sample string 2",
    "ProblemCodeId": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfSubProblemCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Maintenance">
  <SubProblemCode>
    <Code>sample string 2</Code>
    <ProblemCodeId>3</ProblemCodeId>
    <SubProblemCodeId>1</SubProblemCodeId>
  </SubProblemCode>
  <SubProblemCode>
    <Code>sample string 2</Code>
    <ProblemCodeId>3</ProblemCodeId>
    <SubProblemCodeId>1</SubProblemCodeId>
  </SubProblemCode>
</ArrayOfSubProblemCode>