Accept or reject a lead
curl --request POST \
--url https://app.raisegate.com/api/v1/leads/{id}/decision \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accepted": false
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({accepted: false})
};
fetch('https://app.raisegate.com/api/v1/leads/{id}/decision', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.raisegate.com/api/v1/leads/{id}/decision"
payload = { "accepted": False }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"data": {
"leadId": "2e886276-0000-0000-0000-000000000000",
"accepted": false,
"decidedAt": "2026-09-18T17:59:00.172+00:00"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Leads
Accept or reject a lead
{ "accepted": true } only records acceptance. Use /track to accept and start tracking. A new decision replaces the previous one. Shared with the RaiseGate UI.
POST
/
api
/
v1
/
leads
/
{id}
/
decision
Accept or reject a lead
curl --request POST \
--url https://app.raisegate.com/api/v1/leads/{id}/decision \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accepted": false
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({accepted: false})
};
fetch('https://app.raisegate.com/api/v1/leads/{id}/decision', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.raisegate.com/api/v1/leads/{id}/decision"
payload = { "accepted": False }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"data": {
"leadId": "2e886276-0000-0000-0000-000000000000",
"accepted": false,
"decidedAt": "2026-09-18T17:59:00.172+00:00"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}⌘I