Conectar Appsheet con Microsoft Dynamic 365

Estimados amigos:

Tengo una app que es un CRM en appsheet y necesito conectarlo con el CRM de microsoft dynamic para pasarle los datos ingresados en la app. Alguien sabe como hacerlo??. Desde ya muchas gracias.

1 Like

hi @menduko2020

appsheet doesn’t have a direct connector to microsoft dynamics 365, but you can integrate them using webhooks or tools like power automate

here are your main options:

  1. appsheet webhook
    set up a bot in appsheet to send data via webhook (json) to a custom endpoint — this could be a microsoft flow (power automate) or your own api that pushes the data into dynamics 365

  2. power automate (microsoft flow)
    use power automate to receive incoming data and connect it to dynamics 365 using the official connector

  3. google apps script (if using google sheets)
    if your appsheet app stores data in sheets, write a script that detects new rows and sends them to dynamics 365 using its rest api