Path: / admin / realms / {realm} / oauth-clients-by-id / {clientId} / protocol-mappers / models / {id}

Path parameters:
realm - realm name (not id!)
clientId - oauth client's clientId
id -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id} 
PUT /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id} 
DELETE /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id} 

Method Detail

GET /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id}

HTTP Example:
GET /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id}
API Example:

ProtocolMappersResource.getMapperById({'realm': /* name realm name (not id!) */,
  'clientId': /* clientId oauth client's clientId */,
  'id': …});

Output:
ProtocolMapperRepresentation
Produces:
application/json

PUT /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id}

HTTP Example:
PUT /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id}
API Example:

ProtocolMappersResource.update({'realm': /* name realm name (not id!) */,
  'clientId': /* clientId oauth client's clientId */,
  'id': …,
  '$entity': …});

Input:
ProtocolMapperRepresentation
Output:
void
Consumes:
application/json

DELETE /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id}

HTTP Example:
DELETE /admin/realms/{realm}/oauth-clients-by-id/{clientId}/protocol-mappers/models/{id}
API Example:

ProtocolMappersResource.delete({'realm': /* name realm name (not id!) */,
  'clientId': /* clientId oauth client's clientId */,
  'id': …});

Output:
void