Call object method

What is the appropriate http verb and json syntax to call a backend method on an object?

eg, can I do a POST to /users/uid/methods/my_method with this data?
{
“args”: {
“arg”: “value”
}
}

Or do you recommend something else?