GET /admin/realms/{realm}/applications/{app-name}/protocol-mappers/models/{id}- HTTP Example:
GET /admin/realms/{realm}/applications/{app-name}/protocol-mappers/models/{id} | - API Example:
ProtocolMappersResource.getMapperById({'realm': , 'app-name': , 'id': …}); |
- Output:
- ProtocolMapperRepresentation
- Produces:
- application/json
|
PUT /admin/realms/{realm}/applications/{app-name}/protocol-mappers/models/{id}- HTTP Example:
PUT /admin/realms/{realm}/applications/{app-name}/protocol-mappers/models/{id} | - API Example:
ProtocolMappersResource.update({'realm': , 'app-name': , 'id': …, '$entity': …}); |
- Input:
- ProtocolMapperRepresentation
- Output:
- void
- Consumes:
- application/json
|
DELETE /admin/realms/{realm}/applications/{app-name}/protocol-mappers/models/{id}- HTTP Example:
DELETE /admin/realms/{realm}/applications/{app-name}/protocol-mappers/models/{id} | - API Example:
ProtocolMappersResource.delete({'realm': , 'app-name': , 'id': …}); |
- Output:
- void
|