Skip to main content
PUT
/
api
/
admin
/
accountInstitution
/
{id}
Update account institution relationship
curl --request PUT \
  --url http://localhost:3000/api/admin/accountInstitution/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "institution": "<string>",
  "account": "<string>"
}
'
{
  "success": true,
  "message": "User institution deleted successfully"
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Path Parameters

id
string
required

Account Institution ID

Body

application/json
institution
string

Institution ID

account
string

Account ID

Response

Account institution updated successfully

success
boolean
Example:

true

message
string

Success message

Example:

"User institution deleted successfully"