Company Id
Account subdomain
Team member id
GET /v2/rejection_reasons/{id} HTTP/1.1 Host: Authorization: YOUR_API_KEY Accept: */*
Success
{ "Id": 1, "Name": "text", "Type": "NoneSpecified", "Actions": [ { "Id": 1, "Type": "SendEmail", "Action": null } ] }
DELETE /v2/rejection_reasons/{id} HTTP/1.1 Host: Authorization: YOUR_API_KEY Accept: */*
No Content
No content
GET /v2/rejection_reasons HTTP/1.1 Host: Authorization: YOUR_API_KEY Accept: */*
[ { "Id": 1, "Name": "text", "Type": "NoneSpecified", "Actions": [ { "Id": 1, "Type": "SendEmail", "Action": null } ] } ]
NoneSpecified
TheyRejectedUs
WeRejectedThem
POST /v2/rejection_reasons HTTP/1.1 Host: Authorization: YOUR_API_KEY Content-Type: application/json-patch+json Accept: */* Content-Length: 99 { "Id": 1, "Name": "text", "Type": "NoneSpecified", "Actions": [ { "Id": 1, "Type": "SendEmail", "Action": null } ] }
Created
PUT /v2/rejection_reasons/{id} HTTP/1.1 Host: Authorization: YOUR_API_KEY Content-Type: application/json-patch+json Accept: */* Content-Length: 99 { "Id": 1, "Name": "text", "Type": "NoneSpecified", "Actions": [ { "Id": 1, "Type": "SendEmail", "Action": null } ] }