Back to the list of all defined endpoints
GET /api/eperson/epersons
GET /api/eperson/epersons/<:uuid>
{
"id": "028dcbb8-0da2-4122-a0ea-254be49ca107",
"uuid": "028dcbb8-0da2-4122-a0ea-254be49ca107",
"name": "user@institution.edu",
"handle": null,
"metadata": {
"eperson.firstname": [
{
"value": "John",
"language": null,
"authority": "",
"confidence": -1,
"place": 0
}
],
"eperson.language": [
{
"value": "en",
"language": null,
"authority": "",
"confidence": -1,
"place": 0
}
],
"eperson.lastname": [
{
"value": "Doe",
"language": null,
"authority": "",
"confidence": -1,
"place": 0
}
]
},
"netid": null,
"lastActive": "2019-09-25T15:59:28.000+0000",
"canLogIn": true,
"email": "user@institution.edu",
"requireCertificate": false,
"selfRegistered": true,
"type": "eperson",
"_links": {
"self": {
"href": "https://dspace7.4science.it/dspace-spring-rest/api/eperson/epersons/028dcbb8-0da2-4122-a0ea-254be49ca107"
},
"groups": {
"href": "https://dspace7.4science.it/dspace-spring-rest/api/eperson/epersons/028dcbb8-0da2-4122-a0ea-254be49ca107/groups"
}
}
}
/api/eperson/epersons/search/byEmail?email=<:string>
The supported parameters are:
- email: mandatory, EPerson's email to search
It returns the EPersonRest instance, if any, matching the user query
Return codes:
- 200 OK - if the operation succeed
- 400 Bad Request - if the email parameter is missing or invalid
- 401 Unauthorized - if you are not authenticated
- 403 Forbidden - if you are not logged in with sufficient permissions. Only system administrators and users with READ rights on the target EPerson can use the endpoint
GET /api/eperson/epersons/search/byMetadata?query=<:name>
This supports a basic search in the metadata. It will search in:
- UUID (exact match)
- first name
- last name
- email address
It returns the list of EPersonRest instances, if any, matching the user query
Return codes:
- 200 OK - if the operation succeed
- 400 Bad Request - if the email parameter is missing or invalid
- 401 Unauthorized - if you are not authenticated
- 403 Forbidden - if you are not logged in with sufficient permissions. Only system administrators and users with READ rights on the target EPerson can use the endpoint
EPerson metadata can be modified as described in Modifying metadata via Patch.
Additional properties can be modified via Patch as described below.
The replace operation allows to replace existent information with new one. Attempt to use the replace operation to set not yet initialized information must return an error. See general errors on PATCH requests
To replace the certificate required value, curl -X PATCH http://${dspace.url}/api/eperson/epersons/<:id-eperson> -H "Content-Type: application/json" -d '[{ "op": "replace", "path": "/certificate", "value": "true|false"]'
. The operation also requires an Authorization header.
For example, starting with the following eperson field data:
"requireCerticate": true,
the replace operation [{ "op": "replace", "path": "/certificate", "value": "false"]
will result in :
"requireCerticate": false,
To replace the canLogin value, curl -X PATCH http://${dspace.url}/api/eperson/epersons/<:id-eperson> -H "Content-Type: application/json" -d '[{ "op": "replace", "path": "/canLogin", "value": "true|false"]'
. The operation also requires an Authorization header.
For example, starting with the following eperson field data:
"canLogIn": true,
the replace operation [{ "op": "replace", "path": "/canLogin", "value": "false"
will result in :
"canLogIn": false,
To replace the netid value, curl -X PATCH http://${dspace.url}/api/eperson/epersons/<:id-eperson> -H "Content-Type: application/json" -d '[{ "op": "replace", "path": "/netid", "value": "newNetId"]'
. The operation also requires an Authorization header.
For example, starting with the following eperson field data:
"netid": "oldNetId",
the replace operation [{ "op": "replace", "path": "/netid", "value": "newNetId"]
will result in :
"netid": "newNetId",
To replace the email value, curl -X PATCH http://${dspace.url}/api/eperson/epersons/<:id-eperson> -H "Content-Type: application/json" -d '[{ "op": "replace", "path": "/email", "value": "new@email"]'
. The operation also requires an Authorization header.
For example, starting with the following eperson field data:
"email": "old@email",
the replace operation [{ "op": "replace", "path": "/email", "value": "new@email"]
will result in :
"email": "new@email",
To replace the password value while authenticated, use
curl -X PATCH http://${dspace.url}/api/eperson/epersons/<:id-eperson> -H "Content-Type: application/json" -d '[{ "op": "replace", "path": "/password", "value": "newpassword"]'
.
To replace the password value based on a registration token, use
curl -X PATCH http://${dspace.url}/api/eperson/epersons/<:id-eperson>?token=<:token> -H "Content-Type: application/json" -d '[{ "op": "replace", "path": "/password", "value": "newpassword"]'
.
The operation requires an Authorization header or a token.
For example, starting with the following eperson field data:
"password": "oldpassword",
the replace operation [{ "op": "replace", "path": "/password", "value": "newpassword"]
will result in :
"password": "newpassword",
NOTE: The new password is currently returned after an update but this could be revisited later, see #30
The currently authenticated user can modify their EPerson metadata. An administrator can modify any EPerson's metadata.
This includes, but is not limited to, last name, first name, phone, language
POST /api/eperson/epersons
To create a new EPerson, perform a post with the JSON below to the epersons endpoint when logged in as admin.
{
"name": "user@institution.edu",
"metadata": {
"eperson.firstname": [
{
"value": "John",
"language": null,
"authority": "",
"confidence": -1
}
],
"eperson.lastname": [
{
"value": "Doe",
"language": null,
"authority": "",
"confidence": -1
}
]
},
"canLogIn": true,
"email": "user@institution.edu",
"requireCertificate": false,
"selfRegistered": true,
"type": "eperson"
}
Status codes:
- 201 Created - if the operation succeed
- 401 Unauthorized - if you are not authenticated
- 403 Forbidden - if you are not logged in with sufficient permissions
- 422 Unprocessable Entity - if the email address was omitted or already exists
POST /api/eperson/epersons?token=<:token>
To create a new EPerson, perform a post with the JSON below to the epersons endpoint while including a token. The token will be sent via Email from the Create new EPerson registration.
{
"metadata": {
"eperson.firstname": [
{
"value": "John",
"language": null,
"authority": "",
"confidence": -1
}
],
"eperson.lastname": [
{
"value": "Doe",
"language": null,
"authority": "",
"confidence": -1
}
]
},
"canLogIn": true,
"requireCertificate": false,
"type": "eperson"
}
The "eperson.firstname" and "eperson.lastname" metadata are mandatory. The phone number, language, … are optional metadata.
The email property can be set, but would need to be identical to the value from the registration.
The selfRegistered property can be set, but would need to be true
Status codes:
- 201 Created - if the operation succeed
- 400 Bad Request - if the email address didn't match the token or already exists. If the token doesn't exist or is expired
- 401 Unauthorized - if the token doesn't allow you to create this account
GET /api/eperson/epersons/<:uuid>/groups
A HAL link to retrieve the eperson groups of an eperson is included. This will return a pageable list of the groups this person is a direct member of
TODO: A solution to retrieve direct and indirect groups of an eperson is also required. This would use GroupService.allMemberGroupsSet() and is used e.g. when viewing an EPerson as an admin