Collect form responses with attachments from external users to SharePoint

Поділитися
Вставка
  • Опубліковано 7 лют 2025

КОМЕНТАРІ • 4

  • @akereleclement3262
    @akereleclement3262 22 дні тому +1

    Thanks, Boss
    This is very insightful and very timely as well

    • @TundeAkande
      @TundeAkande  22 дні тому

      Good to know that this was helpful 😊

  • @aderibigbeadeyinka7136
    @aderibigbeadeyinka7136 20 днів тому

    this is helpful. please can you assist to include the json code in parse json for the attachments in the comment section.

    • @TundeAkande
      @TundeAkande  15 днів тому +1

      Hi,
      Below is the parse JSON code.
      {
      "type": "object",
      "properties": {
      "name": {
      "type": "string"
      },
      "email": {
      "type": "string"
      },
      "message": {
      "type": "string"
      },
      "attachments": {
      "type": "array",
      "items": {
      "type": "object",
      "properties": {
      "filename": {
      "type": "string"
      },
      "content": {
      "type": "string"
      }
      },
      "required": [
      "filename",
      "content"
      ]
      }
      }
      }
      }
      Note: this might vary based on the names of the fields coming from your form