# Forms Summary

![](https://3974112602-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH4gGgyMb1_fhOg782r%2F-LHZLMN5QN_thSqpCJwO%2F-LHZL_jVwGzodY_a_YFt%2Fforms-summary-01.jpg?alt=media\&token=16f26e9f-5d1c-4464-be50-b2273c3e9f22)

&#x20;Access to [http://myIpAddress:port/orbeon/fr/{app}/{form-name}/summary](http://myipaddress/:port/orbeon/fr/%7Bapp%7D/%7Bform-name%7D/summary)\
\
**Service Type:** post\
**Servide Output:** application/xml\
**Service Path**: /search/{app}/{form-name}\
\
&#x20;{app} - application name\
\
&#x20;{form-name} - form definition name\
\
This page display all form instances of a give application **{app}** of the form definition **{form-name}**.

![](https://3974112602-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LH4gGgyMb1_fhOg782r%2F-LHZLMN5QN_thSqpCJwO%2F-LHZLuwb1Lq7zu6Vc9Yh%2Fforms-summary-02.jpg?alt=media\&token=da7553a1-32fc-4ecb-a86b-f781728fdcca)

Orbeon Input in request body (generic Summary without search):

```
<search>
    <query/>
    <query control="input" html-label="false" match="substring" name="completeName" path="section-1[1]/completeName[1]" search-field="true" summary-field="true" type="xs:string"/>
    <page-size>10</page-size>
    <page-number>1</page-number>
    <lang>en</lang>
</search>
```

\
Orbeon Input in request body (Summary with field search):

```
<search>
    <query/>
    <query control="input" html-label="false" match="substring" name="nombre" path="section-1[1]/nombre[1]" search-field="true" summary-field="true" type="xs:string">
     John Smith
    </query>
    <page-size>10</page-size>
    <page-number>1</page-number>
    <lang>en</lang>
</search>
```

\
Persistence Layer Output Example:

```
<documents xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:f="http//www.orbeon.com/function" xmlns:frf="java:org.orbeon.oxf.fr.FormRunner" xmlns:odt="http://orbeon.org/oxf/xml/datatypes" xmlns:oxf="http://www.orbeon.com/oxf/processors" xmlns:p="http://www.orbeon.com/oxf/pipeline" xmlns:saxon="http://saxon.sf.net/" xmlns:sql="http://orbeon.org/oxf/xml/sql" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xpl="java:org.orbeon.oxf.pipeline.api.FunctionLibrary" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xxf="http://orbeon.org/oxf/xml/xforms" page-size="10" search-total="5" total="5">
    <document created="2015-10-02T14:03:36.0700" draft="true" last-modified="2015-10-02T14:04:32.0700" name="fbc49b84084d517ff6146ca57f3a34c7d5330065" operations="create read update delete ">
        <details>
            <detail>bruno</detail>
        </details>
    </document>
    <document created="2015-10-02T13:59:55.0700" draft="false" last-modified="2015-10-02T13:59:55.0700" name="fbc49b84084d517ff6146ca57f3a34c7d5330065" operations="create read update delete ">
        <details>
            <detail>bruno</detail>
        </details>
    </document>
    <document created="2015-10-02T14:00:03.0700" draft="false" last-modified="2015-10-02T14:00:03.0700" name="672a9caa1eb2d213d6f6ec46843f038bb3969a61" operations="create read update delete ">
        <details>
            <detail>juan</detail>
        </details>
    </document>
</documents>
```
