You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 20, 2019. It is now read-only.
I got round this by setting the endpoint with my query string:
FullContact.configure do |config|
config.api_key = "xxxx"
config.endpoint = "https://api.fullcontact.com/v2/?webhookUrl=http://myapi.com/webhook&webhookBody=json"
end
Faraday parses the querystring and appends it to the request url.
This works but it would be nice to have actual options for this.
Is it possible to supply the webhook to handle 202 status codes?
For example I might submit a request like this:
https://api.fullcontact.com/v2/[email protected]&webhookUrl=http://api/webhookk&webhookId=3&apiKey=xxx
FullContact can then call my endpoint when it has completed the request.
I don't see in the code where this is possible but perhaps I am missing something.
The text was updated successfully, but these errors were encountered: