Is there a current plan or intent to create a Skyvia interaction with Emma, and email marketing tool?
https://myemma.com/
Is there a current plan or intent to create a Skyvia interaction with Emma, and email marketing tool?
https://myemma.com/
Hello Michael,
Thank you for contacting Skyvia Support.
At this moment, we don't have a connector to Emma.
I have added your request to our roadmap. Once the connector will be available, we will immediately inform you but we can not give any exact timeframes yet.
Should you have other questions, don't hesitate to reach out.
Best regards,
Serhii
Thank you! I should also ask, do you offer custom connectors for a fee, if we wanted to build a custom connection to Emma?
Hi Michael,
Thank you for your response.
Yes, you can build custom REST connector for data sources that have REST API.
Metadata for the REST connection has to be passed in the following format:
{ "ProviderConfiguration" : ... }, "Metadata" : [ ... ] }
In the ProviderConfiguration block, the connection settings are described (including Headers). This block is allowed to be empty in some cases.
Metadata contains the specific API endpoints description ( URL, the list of columns with data types, supported methods for example GET, POST, etc. have to be specified for each endpoint)
Headers inside the ProviderConfiguration block has the following format:
{ "ProviderConfiguration" : { "Headers" : [ { "Key":"X-API-Version", "Value" : 2 } ] }, ...
If you need to add several headers, the key-value couples are listed in the Headers array separated with commas:
"Headers" : [
{ "Key":"X-API-Version", "Value" : 2 },
{ "Key":"Authorization", "Value" : "Bearer 1254fhr545fr" }
]
Should you have any questions, please contact us back.
Best regards,
Serhii