After reading this community question, may you help me with this API post?
Step TWO of my Zap: ProTech FB > Em > WhatConverts > BQ5
Contains a Webhook with the token, headers and a couple sample data fields for testing.
Getting a 412 error when I test the step, which may be related to the headers or authorization.
Public API documentation is located here:
https://docs.api.jobprogress.com/
I’m using the POST - Create Prospect example.
Here is how my webhook is created so far:
URL: https://api.jobprogress.com/api/v3/prospects
Payload Type: json
Data:
first_name = Donald
last_name = Duck
email = dduck1925@toon.in
Wrap request in Array: No
File (none)
Unflatten (default yes)
Basic Auth = (actual username)|(actual password) <<=== with user/pass get 401 error; without get 412 error
Headers:
Content Type = aapplication/x-www-form-urlencoded
Authorization = Bearer (copy/paste token)
~~ Looking forward to your feedback!