cURL
curl --request POST \ --url https://app.fliqr.ai/api/pipelines/{pipeline_id}/opportunities \ --header 'Content-Type: application/json' \ --header 'X-ACCESS-TOKEN: <api-key>' \ --data ' { "contact_id": "12345678", "title": "This is a test opportunity", "description": "...", "stage_id": 12334, "value": 300, "status": "open", "priority": "low", "assigned_admins": [ 55446563 ] } '
{ "data": [ { "id": 123, "contact_id": 123, "title": "<string>", "description": "<string>", "value": 123, "status": "<string>", "priority": "<string>", "stage": { "id": 123, "name": "<string>" }, "assigned_admins": [ 123 ], "created_at": "2028-02-08 12:34:56", "created_by": 123, "updated_at": "2028-02-08 12:34:56", "updated_by": 123 } ] }
Creates an opportunity / ticket.
Creates an opportunity / ticket
if omitted, the the contact is added to first stage.
won is positive and lost is negative
open
won
lost
low
medium
high
successful operation
Show child attributes
Was this page helpful?