• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

How to see the full data pabbly sent to an api

dataforge

Member
Your Task History ID
IjU3NjEwNTZlMDYzMTA0MzU1MjZhNTUzNjUxMzY1MTY1NTQzMyI_3D_pc
In my workflow, I think I have my settings correct to create a repairshopr invoice. According to the task history, a recent task failed, as it says that we did not send the 'cusomter id' however I have that set to send the customer id in the workflow. so I wanted to see what data did pabbly send, but I dont see how to do that. I wanto see the api call that pabbly made to repairshopr to create the invoice to ensure that it was correct, but in the history, i dont see how. the Data In just shows the endpoint url, and not the data sent.
thank you
 

ArshilAhmad

Moderator
Staff member
Hi @dataforge,

Based on your Task History, I can see that you are not obtaining the Customer ID from the 'Search Customer' action event. As a result, the Customer ID is not being mapped to the 'Create Invoice' action event, which is causing the error you are encountering.

Attached below is the Endpoint URL and JSON for the Create Invoice action event

JSON:
{
  "id": 0,
  "balance_due": 0,
  "customer_id": 0,
  "number": "string",
  "date": "2023-08-29T18:16:10.545Z",
  "customer_business_then_name": "string",
  "created_at": "2023-08-29T18:16:10.545Z",
  "updated_at": "2023-08-29T18:16:10.545Z",
  "due_date": "2023-08-29",
  "subtotal": "string",
  "total": "string",
  "tax": "string",
  "verified_paid": true,
  "tech_marked_paid": true,
  "ticket_id": 0,
  "pdf_url": "string",
  "is_paid": true,
  "location_id": 0,
  "po_number": "string",
  "contact_id": 0,
  "note": "string",
  "hardwarecost": 0,
  "line_items": [
    {
      "item": "string",
      "name": "string",
      "product_id": 0,
      "quantity": 0,
      "cost": 0,
      "price": 0,
      "discount_percent": 0,
      "taxable": true,
      "upc_code": "string",
      "tax_note": "string",
      "wholesale": 0,
      "invoice_bundle_id": 0,
      "tax_rate_id": 0,
      "user_id": 0,
      "position": 0
    }
  ]
}
 
Top