curl --request PATCH \
--url http://localhost:3000/v1/orgs/{org_id}/reps/{rep_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com",
"metadata": {}
}
'curl --request PATCH \
--url http://localhost:3000/v1/orgs/{org_id}/reps/{rep_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com",
"metadata": {}
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response