Skip to main content
PUT
/
Customer
/
ProfileInfo
cURL
curl --request PUT \
  --url https://api.trysynch.com/Customer/ProfileInfo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "profileName": "<string>",
  "emailAddress": "<string>",
  "mobileNumber": "<string>",
  "sendNotifications": true
}
'

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Use /auth/token to obtain access token. Enter 'Bearer' [space] and then your token in the text input below. Example: 'Bearer eyJhbGci...'

Body

profileName
string
emailAddress
string
mobileNumber
string
sendNotifications
boolean

Response

200

OK