Manage Line Request
curl --request POST \
--url https://app.tuco.ai/api/line-requests/:id \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.tuco.ai/api/line-requests/:id"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.tuco.ai/api/line-requests/:id', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.tuco.ai/api/line-requests/:id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.tuco.ai/api/line-requests/:id"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.tuco.ai/api/line-requests/:id")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.tuco.ai/api/line-requests/:id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyLines & Leads
Manage Line Request
Cancel a pending Tuco line request or recover its Stripe payment link. Bearer-token REST endpoint.
POST
/
api
/
line-requests
/
:id
Manage Line Request
curl --request POST \
--url https://app.tuco.ai/api/line-requests/:id \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.tuco.ai/api/line-requests/:id"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.tuco.ai/api/line-requests/:id', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.tuco.ai/api/line-requests/:id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.tuco.ai/api/line-requests/:id"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.tuco.ai/api/line-requests/:id")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.tuco.ai/api/line-requests/:id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyThis endpoint supports small request-management actions. It does not create a new line request.
When To Use This Endpoint
Use this endpoint when the request already exists and the user asks one of these questions:- “I lost the payment link. Can I get it again?”
- “I changed my mind. Can I cancel this unpaid request?”
Authentication
Pass your workspace API key as a Bearer token, or use a Clerk session token.Authorization: Bearer tuco_xxxxxxxxxxxxx
Path parameter
string
Required. The line request id returned by
POST /api/line-requests.Supported actions
| Action | What it does |
|---|---|
payment_link | Returns the hosted invoice link again for an awaiting_payment request |
cancel | Cancels an awaiting_payment request so it no longer blocks a new purchase |
provisioning, active, failed, or canceled, these actions no longer apply.
Recover payment link
curl -X POST "https://app.tuco.ai/api/line-requests/6a092ebde4a7fbddc8a832da" \
-H "Authorization: Bearer tuco_xxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{ "action": "payment_link" }'
Success (200 OK)
{
"success": true,
"status": "awaiting_payment",
"paymentUrl": "https://invoice.stripe.com/...",
"invoiceId": "in_123",
"reused": true
}
payment_link can act like a safe recovery action:
- if payment is still needed, it gives you the invoice again
- if payment has already been reconciled, it can return the updated provisioning state instead
Cancel pending request
curl -X POST "https://app.tuco.ai/api/line-requests/6a092ebde4a7fbddc8a832da" \
-H "Authorization: Bearer tuco_xxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{ "action": "cancel" }'
Success (200 OK)
{
"success": true,
"status": "canceled",
"line": {
"_id": "6a092ebde4a7fbddc8a832da",
"provisioningStatus": "canceled",
"paymentStatus": "failed"
}
}
Error responses
| Status | When | Body |
|---|---|---|
400 | Invalid line request id or unsupported action | { "error": "Invalid line request id" } or { "error": "Unsupported action" } |
401 | Missing or invalid API key / session | { "error": "Unauthorized" } |
403 | payment_link used without an active subscription | { "success": false, "status": "subscription_required", "message": "...", "redirect": "/billing" } |
404 | Request not found in your workspace | { "error": "Line request not found" } |
409 | Action does not apply to the current request state | { "success": false, "status": "...", "message": "..." } |