# portfolios_reference

### Detailed Description

These jobs are used to request and edit portfolios.

#### Portfolio XML Format

```xml
<Portfolios>
  <Portfolio id="123" created="135233432" creator="jdoe"
              recipient="muster" subject="Sample Portfolio" objtype="13072">
    <Objects>
      <Object objecttype_id="13072" id="12"/>
      <Object objecttype_id="13072" id="34"/>
    </Objects>
  </Portfolio>
</Portfolios>
```
The root element `<Portfolios>` can be omitted if only one entry is defined.

`<Portfolio>` attributes:

`id` (INT)::
ID of the portfolio.

`created` (INT)::
Timestamp of creation.

`creator` (STRING)::
Name of the creator.

`recipient` (STRING)::
Recipient.

`subject` (STRING)::
Title of the portfolio.

`objtype` (INT)::
Object type to which the portfolio is restricted.

`<Objects>` contains the list of objects (folders, registers, documents) in the portfolio.

`<Object>` attributes:

`objecttype_id` (INT)::
Object type.

`id` (INT)::
ID of the object instance.
