Power Automate - How to upload a file using PipeDrive API?

Поділитися
Вставка
  • Опубліковано 5 вер 2024
  • This video explains how to upload a file using PipeDrive API.
    Here are the details of the API
    Method: Post
    URI: hubinternation...
    Headers:
    {
    “Accept”: “application/json”,
    “Content-Type”: “multipart/form-data”
    }
    Queries:
    {
    “api_token”: “your api token”
    }
    Body:
    {
    “$content-type”: “multipart/form-data”,
    “$multipart”: [
    {
    “body”: “your deal id”,
    “headers”: {
    “Content-Disposition”: “form-data; name="deal_id"”
    }
    },
    {
    “body”: {
    “$content”: “your binary format of the file content”,
    “$content-type”: “application/pdf”
    },
    “headers”: {
    “Content-Disposition”: “form-data; name="file"; filename="yourfilename.pdf"”
    }
    }
    ]
    }

КОМЕНТАРІ • 4

  • @amazeme2885
    @amazeme2885 Місяць тому +1

    How to upload a csv file to api end point? Any help on this ?

    • @abm4975
      @abm4975  Місяць тому

      Hi
      Where you want to upload the csv file to? What's the API endpoint? Please give me more information on your requirement.
      Thanks

  • @user-ef9ep8gj4y
    @user-ef9ep8gj4y 7 місяців тому +1

    Show