From Openprovider API documentation
Module Tag > Create
Module
| Tag
|
Command name
| createTagRequest
|
Use
| Creates a tag
|
Input
|
|
Output
|
|
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('createTagRequest')
->setAuth(array('username' => 'username', 'password' => 'password'))
->setArgs([
'key' => 'customer',
'value' => 'value',
]);
Raw XML
Please note that newlines and leading spaces are added only for readability. Those whitespaces should be excluded from your XML command before sending it to Openprovider.