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>"
}Updates the iser and returns the newly updated iser details. This is treated as an informal a PATCH operation approach, which means that you can send in just the fields you want to update. Omitting fields will leave them alone.
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>"
}The access token received from the authorization server in the OAuth 2.0 flow.
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