I need to store a user id, along side several picture uploads all in a relational database. My solution for storing the pictures would be to save the pictures locally on appian and save the document ids on the database alongside the user id. However, with the way I have it implemented right now it seems I cannot pass in the user id into the body alongside the picture upload as it takes up the entire body. I also cannot attach several pictures for upload. I need a way to be able to pass in the user id and atleast 3 pictures into the body to be saved in the database.
Discussion posts and replies are publicly visible
Seems like you are talking about implementing a web API, correct?
AFAIK, a web API only accepts a single file. The user ID could be passed as a query parameter or a header.
https://docs.appian.com/suite/help/23.4/passing-a-web-api-document-into-a-process-model.html
Is there no way to pass in the user id in the body and the ability to send several pictures aswell?
You can construct your request body like this.
{ userId: 2, documents: todocument({7585,7538}) }
That works for outgoing calls (integrations) only.