Skip to main content
PUT
/
checkin
/
v1
/
api
/
teammember
/
update
Updates a team member
curl --request PUT \
  --url https://api.qflowhub.io/checkin/v1/api/teammember/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Ocp-Apim-Subscription-Key: <api-key>' \
  --data '
{
  "userName": "<string>",
  "password": "<string>",
  "email": "<string>",
  "id": "<string>",
  "firstName": "<string>",
  "lastName": "<string>"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.qflowhub.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.0 access token issued by https://identity.qflowhub.io/core. Include as Authorization: Bearer <token>. See the Authentication guide for the token flow.

Ocp-Apim-Subscription-Key
string
header
required

Your APIM subscription key. Sent in the welcome email when your account is enabled. Required on every request alongside the bearer token.

Body

The team member to update

userName
string
required
password
string
required
email
string
required
id
string
firstName
string
lastName
string

Response

OK

The response is of type object.