{
"data": {
"type": "PasswordReset",
"attributes": {
"emailAddress": "string",
"instant": true
},
"relationships": {
"subPortal": {
"data": {
"id": "FID001",
"type": "SubPortal"
}
}
}
}
}
curl --location --request POST 'https://api.synap.ac/v3/password-resets' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"type": "PasswordReset",
"attributes": {
"emailAddress": "string",
"instant": true
},
"relationships": {
"subPortal": {
"data": {
"id": "FID001",
"type": "SubPortal"
}
}
}
}
}'
{
"data": {
"id": "FID001",
"type": "PasswordReset",
"attributes": {
"emailAddress": "string",
"instant": true,
"newPassword": "string"
},
"relationships": {
"subPortal": {
"data": {
"id": "FID001",
"type": "SubPortal"
}
}
}
}
}