Skip to main content
PATCH
/
v1
/
orgs
/
{org_id}
/
reps
/
{rep_id}
Update a rep
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": {}
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org_id
string
required
rep_id
string
required

Body

application/json
name
string | null
Maximum string length: 200
email
string<email> | null
metadata
object

Response

200

Default Response