I am looking to create a Xero Invoice when a field is triggered in a Zoho Creator application form. However, have been hit with the below error when matching the two modules:
Validation failed for 1 parameter(s).
*** Invalid UUID in parameter ‘Contact’.**
What and where is the “Contact” parameter and UUID?
Can you take a screenshot of your make scenario for me, along with the relevant module configurations and share the images here?
1 Like
@Stu_Hartley You need the UUID of the contact person in Xero. You can not combine a random uuid and a client together, because that will never be valid. It’s an identifier for Xero to understand to which contact this invoice needs to be assigned.
So you have 2 options to do this:
- Save the UUID of the Xero contact in your Zoho records and use this UUID
- Add another module befoee your “Create an invoice”, which searches for a contact. If the contact is found you can use the UUID of that contact.
1 Like