curl --request POST \
--url https://api.example.com/admin/iser/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"forIserCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"forIserID": 123,
"languageID": 1,
"bio": null,
"countryAbbreviation": null,
"email": null,
"featuredWebsite": null,
"firstName": null,
"handle": null,
"lastName": null,
"phoneNumber": null,
"primaryLanguageID": 123,
"primaryEditionId": 123,
"timezoneID": 123,
"isSuspended": 123,
"whatsAppCountryAbbreviation": "<string>",
"whatsAppNumber": "<string>",
"birthMonth": 123,
"birthYear": 123
}
'{
"success": true,
"data": "<unknown>"
}Updates the iser and returns the newly updated iser details. This is a PATCH operation, 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/admin/iser/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"forIserCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"forIserID": 123,
"languageID": 1,
"bio": null,
"countryAbbreviation": null,
"email": null,
"featuredWebsite": null,
"firstName": null,
"handle": null,
"lastName": null,
"phoneNumber": null,
"primaryLanguageID": 123,
"primaryEditionId": 123,
"timezoneID": 123,
"isSuspended": 123,
"whatsAppCountryAbbreviation": "<string>",
"whatsAppNumber": "<string>",
"birthMonth": 123,
"birthYear": 123
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.