Exchange data by post and get with esprocrm

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Harald
    Member
    • May 2018
    • 40

    Exchange data by post and get with esprocrm

    I switched from Zoho to EspoCrm.
    Unfortunately, my Api know is very little.
    I have transferred data to Zoho from Xenioo so far.
    In the following form:
    Send as Post to a url


    https://crm.zoho.eu/crm/private/xml/Contacts/insertRecords?authtoken=xxxxxxxxxxxxxxxxxxxxxxx&sc ope=crmapi&newFormat=1&xmlData={{{this.payload}}}

    Content of the payload:

    <Contacts>
    <row no="1">
    <FL val="First Name">Scott</FL>
    <FL val="Last Name">James</FL>
    <FL val="Email">{{{user_email}}}</FL>
    <FL val="Department">CG</FL>
    <FL val="Phone">999999999</FL>
    <FL val="Fax">9999999999</FL>
    <FL val="Mobile">99989989</FL>
    <FL val="Assistant">John</FL>
    </row>
    </Contacts>

    There is also a box for headers in the tool.

    How can I transfer from Xenioo data to EspoCrm.

    Can someone please show me a implementation for Espo?

  • tanya
    Senior Member
    • Jun 2014
    • 4308

    #2
    Hello,
    here you can find the documentation, hope it helps

    Comment

    • Harald
      Member
      • May 2018
      • 40

      #3
      Unfortunately, I don't understand about the registration.
      At Zoho the registration was: https://crm.zoho.eu/crm/private/xml/Contacts/insertRecords?authtoken=xxxxxxxxxxxxxxxxxxxxxxxxxx x&scope=crmapi&newFormat=1&xmlData={{{{{this.paylo ad}}}

      With espocrm


      How do I enter this part?
      "Espo-Authorization: " + base64Encode(username + ':' + passwordOrToken)

      should I first be on the PC in the terminal with
      echo - n "Harald +":" + Password" | base64
      LSBuIEhcmFsZCArIDogKyBQYXNzd29yZAo=

      generate this key?

      And if so, how to add the key to https.//xxxxxxxxxxxx.de/api/v1/

      Comment

      • roma
        Member
        • Nov 2018
        • 48

        #4
        Hi,
        In case you need some practical hints on how to transfer contact data from Zoho to EspoCRM, you can find it here - https://www.espocrm.com/blog/export-...rt-to-espocrm/

        Comment

        Working...