Do we have plugin to convert appian document in to blob

Certified Senior Developer

i Wanted to store appian document into blob format in database, Can we  have plugin for this

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to Stefan Helzle

    i wanted to send mutliple document with creating webapi in appian , so other system can call it, But as of now i see it is supporting only one document 

    a!localVariables(

    local!document: 35210,


    a!httpResponse(

    headers: if(
    http!request.queryParameters.attachment,
    a!httpHeader(
    name: "Content-Disposition",
    value: concat(
    "attachment; filename=""",
    document(local!document, "name"),
    ".",
    document(local!document, "extension"),
    """"
    )
    ),
    {}
    ),
    body: todocument(local!document)
    )

    )

Children