Skip to main content

Filter communication codes

This Java function filters communication codes based on a request and returns the response.

Request Body required

The request parameter in the filterCommunicationCode method is of type FilterCommunicationCodeRequest. It is annotated with @RequestBody, indicating that the data for this parameter will be obtained from the request body of the HTTP POST request. This parameter contains the information needed to filter communication codes

    requesterUserUUID string
    searchToken string
Responses

The method is returning a ResponseEntity object containing a GetCommuniationCodeReponse object, which represents the response of filtering communication codes.


Schema
    errors object[]
  • Array [
  • errorName string
    errorMessage string
    errorCode int32
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningTitle string
    warningMessage string
  • ]
  • statusCode int32
    apiRequestId string
    communicationCodeDTOs object[]
  • Array [
  • code string
    description string
    name string
    note string
  • ]
Loading...