curl --request POST \
--url https://api.concord.tech/site-v1/{projectId}/profile \
--header 'Content-Type: application/json' \
--header 'x-session: <api-key>' \
--data '{
"concordId": "<string>",
"userId": "<string>",
"projectUserId": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"address": {
"addressLine1": "<string>",
"addressLine2": "<string>",
"addressLine3": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"county": "<string>",
"country": "<string>"
}
}'
"<string>"
Update the profile of the current user.
curl --request POST \
--url https://api.concord.tech/site-v1/{projectId}/profile \
--header 'Content-Type: application/json' \
--header 'x-session: <api-key>' \
--data '{
"concordId": "<string>",
"userId": "<string>",
"projectUserId": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"address": {
"addressLine1": "<string>",
"addressLine2": "<string>",
"addressLine3": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"county": "<string>",
"country": "<string>"
}
}'
"<string>"
Default Response
The response is of type string
.