Skip to main content
POST
/
iser
/
update
Update iser details.
curl --request POST \
  --url https://api.example.com/iser/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "languageID": 1,
  "bio": "Living the good life with my cats.",
  "countryAbbreviation": "USA",
  "email": "[email protected]",
  "featuredWebsite": "https://www.google.com",
  "firstName": "John",
  "handle": "johndoe",
  "lastName": "Doe",
  "phoneNumber": "1234567890",
  "primaryLanguageID": 1,
  "primaryEditionId": 1,
  "timezoneID": 1,
  "isSuspended": null,
  "whatsAppCountryAbbreviation": "US",
  "whatsAppNumber": "1234598760",
  "birthMonth": null,
  "birthYear": null,
  "tileColor": null
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Input model to update an iser's details. This is NOT a PATCH operation. Any parameters that are missing or null will be set to null. Please pass in ALL parameters

languageID
integer<int32>
default:1
bio
string | null
default:Living the good life with my cats.
countryAbbreviation
string | null
default:USA
email
string | null
firstName
string | null
default:John
handle
string | null
default:johndoe
lastName
string | null
default:Doe
phoneNumber
string | null
default:1234567890
primaryLanguageID
integer<int32> | null
default:1
primaryEditionId
integer<int32> | null
default:1
timezoneID
integer<int32> | null
default:1
isSuspended
integer<int32> | null
whatsAppCountryAbbreviation
string | null
default:US
whatsAppNumber
string | null
default:1234598760
birthMonth
integer<int32> | null
birthYear
integer<int32> | null
tileColor
string | null

Response

Success

success
boolean
data
unknown