in service/src/main/java/org/apache/fineract/cn/interoperation/service/rest/InteropRestController.java [143:152]
public ResponseEntity<InteropIdentifierData> registerAccountIdentifier(@PathVariable("idType") InteropIdentifierType idType,
@PathVariable("idValue") String idValue,
@PathVariable(value = "subIdOrType", required = false) String subIdOrType,
@RequestBody @Valid InteropIdentifierData requestData)
throws Throwable {
CommandCallback<InteropIdentifierData> result = commandGateway.process(new InteropIdentifierCommand(requestData,
idType, idValue, subIdOrType), InteropIdentifierData.class);
return ResponseEntity.ok(result.get());
}