📄Edit User

Edit User Details

Edit User Information

Params

Header Parameter ⬇️

Header ParameterData TypeDescription

Bearer {{access_token}} (required)

String

Provide Access Token for fetching User Account Details. Access Token is generated via the Submit OTP API endpoint.

Sample Access Token: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJmcmVzaCI6dHJ1ZSwiaWF0IjoxNjgwMDI0MDIzLCJqdGkiOiI3NDQ0YWRjOS1lMDk4LTQ3YmEtOWYxZS04MmQ5MjgzMzAzMjYiLCJ0eXBlIjoiYWNjZXNzIiwic3ViIjoiRVFPS1NVIiwibmJmIjoxNjgwMDI0MDIzLCJleHAiOjE2ODAxOTY4MjN9.UWYCZXenkVS-SVgHlncOht-ckloNcPilUPoYAmH2Yfw.

Body Parameter ⬇️

Body ParameterData TypeDescription

name (required)

String

Provide Name for Update.

language (required)

String

Provide Language for Update

organization_id (required)

String

Provide Organization ID for update

image_url (required)

String

Provide image url to update in the user profile.


Sample Request ⬇️ (Body Parameter)

curl --location 'https://matar.in.ngrok.io/api/v1/edit_user' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJmcmVzaCI6dHJ1ZSwiaWF0IjoxNjkyODY2MDMwLCJqdGkiOiIyMzFiNTEzZS0xMTRlLTQzZmUtYTY4My03MmIxNzIxMzVmODQiLCJ0eXBlIjoiYWNjZXNzIiwic3ViIjoiMzk1MDFUIiwibmJmIjoxNjkyODY2MDMwLCJleHAiOjE2OTM3MzAwMzB9.3uHoS3QV0Qfg8bQPPKXW47yPBfkqhCRrbG5lCEm1IoU' \
--header 'Content-Type: application/json' \
--data '{
    "name": "Sri",
    "language": "ur-IN",
    "organization_id": "K7QUEV",
    "image_url": "https://listapp-images.s3.ap-south-1.amazonaws.com/matar_profile_05.png"
}'

Responses ⬇️

Status Code: 🟢200 (200 denotes 'ok')

{
    "_id": "39501T",
    "image_url": "https://listapp-images.s3.ap-south-1.amazonaws.com/matar_profile_05.png",
    "language": "ur-IN",
    "name": "Sri",
    "phone_number": "917846234567",
    "roles": {
        "default": [
            "K7QUEV"
        ]
    }
}

Status Code: 🔴404 (404 denotes 'Not found')

{
      
}

Response Parameter Description:

Response ParameterDescription

_id

User ID

image_url

User Profile Image URL or Avatar

language

Language in which the user has signed in. To see all language types check Get all Languages API Endpoint.

name

Name for the User Account

phone_number

Phone Number Linked to User Account

roles : default :

This contains the organization id in which the User has joined. To see the list of all organizations by org id check Get List of organizations API endpoint.

Last updated