This documentation has moved

XML API documentation can now be found at developer.openprovider.com. This page will remain available until September 2026, but will no longer be updated.

The XML API itself is not changing. Your existing integration continues to work.

API Format tags

From Openprovider API documentation

Jump to: navigation, search

Format specification > Tags

This parameter is optional and allows you to specify a specific tags for object

Array of arrays with members:

key The key of the tag. Allowed values: 'customer'
value The value of the tag.

Using PHP class

array(
  array(
    'key' => 'customer',
    'value' => 'companyA'
  ),
);

Raw XML

<tags>
   <array>
       <item><key>customer</key><value>companyA</value></item>
   </array>
</tags>
Views
Personal tools