HTTP Action Data Bank
When you're building your HTTP action, you can reference additional variables which will be provided by Moveworks when the HTTP action executes. This is the HTTP Action Data Bank.
meta_info
meta_info
{
"meta_info": {
"user": {
...
},
"action_instance_id": "{{uuid}}"
}
}
meta_info.user
meta_info.user
We can access the user attributes of the user who triggered the action (via a Plugin) with the following notation meta_info.user.<attribute>
. View all of the available user attributes here.
For example, if you wanted to use the current user's email, you would reference it like {{meta_info.user.email_addr}}
meta_info.action_instance_id
meta_info.action_instance_id
This is a unique ID provided when the AI agent attempts to execute this HTTP action. You can use it as an idempotency key (deduplicate retry calls).
Updated 3 days ago