Sign up instructions and getting your first sandbox working
In this tutorial, you will:
Let’s start by signing up for an Invopop account.
If you’re using Google, you’ll be redirected to the Google sign up page, otherwise you’ll receive an email with a code to verify your account.
Now that you’ve signed up, you can invite your colleagues to join your organization.
Now let’s create your first workflow. We’ll start with a simple workflow that generates a PDF invoice.
Now let’s upload an invoice to your workspace that we’ll later send to the ‘PDF Invoice’ workflow. You can upload document manually from the Console or by using the API.
Use the Create an Entry API endpoint with a request body that wraps your invoice in the required structure.
Your request body should look like this:
Populate the data
field with your complete invoice object. You can use the example below:
If everything goes well, you’ll get a 200 OK
response along with the JSON for your newly registered invoice.
You’ve just created your first invoice! You can click on Preview to see how it’d look like in a PDF format.
Next, we’ll process the invoice by sending it to the ‘PDF Invoice’ workflow we set up earlier. You can do this manually from the Console or by using the API.
Select the invoice you just uploaded. This will open the document editor.
Select the invoice you just uploaded. This will open the document editor.
Use the Create a Job
API endpoint with the following request body:
silo_entry_id
should reference the Silo Entry ID of the uploaded invoice.workflow_id
should reference the ID of the workflow you created.If everything goes smoothly, you’ll receive a 202 Accepted
response confirming the invoice has been processed.
That’s it! You’ve successfully processed your first invoice.
Next up: learn how to correct an invoice in the Correct an Invoice tutorial.