Update the person with the indicated :id in the URL. Requires write permissions.
cURL
curl --request PATCH \ --url https://membership.sjaa.net/api/people/:id \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "person[first_name]": "<string>", "person[last_name]": "<string>", "person[discord_id]": "<string>" }'
{ "id": [ "<any>" ], "contacts": [ "<any>" ], "memberships": [ "<any>" ], "first_name": "<string>", "last_name": "<string>", "discord_id": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The updated Person record.
The response is of type object.
object