rest_tranasaction_UUID(self,
*args,
**kw)
|
|
Perform some action on the specified transaction. GET will retrieve
the transaction. DELETE will delete the transaction. POST will update
the transaction using the given keyword parameters.
URL Format:
/rest/transaction/<UUID>/
- Parameters:
self (enomalism2.REST.rest) - The method class.
data (String) - The transaction data attribute.
target (String) - The transaction target attribute.
message (String) - The transaction message attribute.
completion (Integer) - The transaction completion attribute.
lock (String) - The transaction lock attribute.
- Returns: Dictionary
- A dictionary containing the result of the action.
- Decorators:
@register_extension("transaction/*", allowed_methods= ['GET', 'POST', 'DELETE'])
- Raises:
None - No exceptions are raised by this method.
|