Skip to main content
PUT
/
v1
/
orgs
/
{org_id}
/
reps
/
{rep_id}
/
methodology
Manually set rep methodologies
curl --request PUT \
  --url http://localhost:3000/v1/orgs/{org_id}/reps/{rep_id}/methodology \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "primary": "<string>",
  "secondary": "<string>",
  "justification": "<string>"
}
'

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
primary
string
required
Minimum string length: 1
secondary
string
Minimum string length: 1
justification
string
Maximum string length: 2000

Response

200

Default Response