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>"
}
'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>"
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response