Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This page will provide the API contracts for LC user registration.

Info

API DOC LINK


POST:

Description: Create patron.
API: https://folio-dev-volaris-edge.ci.folio.org/patron/account/{externalSystemID}?apikey=eyJzIjoieHFpNzNjNEZzOSIsInQiOiJkaWt1IiwidSI6ImRpa3VfYWRtaW4ifQ==

...

ERROR CODE for ALL the API’s (negative scenarios) - Work in progress : Also below codes are found in API DOC: API DOC LINK

Sample Error Responses:

account is not active"errorCodeUSERACCOUNTINACTIVE does not belong to the required patron groupUser does not belong to the required patron group"errorCodeINVALIDPATRONGROUP422: User already exists422 already exists"errorCodeUSER404: user does not exist404User does not exist"errorCodeUSERFOUND400 already exist with email provided in payload400User already exist with email provided in payload"errorCodeEMAILALREADYEXIST

API TYPE

ERROR

Response JSON

POST

API DOC LINK

422: User account is not active

Code Block
{
    "code": 422,
    "errorMessage": "USER_ACCOUNT_INACTIVE"
}

422: User

does not belong to the required patron group

Code Block
{
    "code": 422,
    "
errorMessage": "
INVALID_
PATRON_
GROUP"
}

422: User

already exists

Code Block
{
    "code": 422,
    "errorMessage": "USER_ALREADY_EXIST"

}

422: Multiple users with email

Code Block
{
    "code": 422,
    "
errorMessage": "
MULTIPLE_USER_
WITH_
EMAIL"
}

PUT

API DOC LINK

404: user does not exist

Code Block
{
    "code": 
404,
    "errorMessage": "USER_NOT_FOUND"
}

422: User

already exist with email provided in payload

Code Block
{
    "code": 422,
    "
errorMessage": "
EMAIL_ALREADY_EXIST"
}

PUT

422: Multiple users found with the same email

Code Block
{
    "code": 
422,
    "errorMessage": "
MULTIPLE_USER_WITH_EMAIL"
}

422: Required Patron group not applicable for user

Code Block
{
    "code": 422,
    "
errorMessage": "
PATRON_GROUP_NOT_
APPLICABLE"
}

GET by email

API DOC LINK

404: User

does not exist

Code Block
{
    "code": 
404,
    "errorMessage": "
USER_NOT_FOUND"
}

422: Multiple users found with the same email

Code Block
{
    "code": 422,
    "
errorMessage": "
MULTIPLE_USER_
WITH_
EMAIL"
}