Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column

Basically, for each resource type in frevvo (User, Application, FormType, Theme, Schema) a Atom Feed representation is provided. The following table shows the different URI to access the different resource feeds:

Column
width240px

On this page:

Table of Contents
maxLevel1

 

 Data API URLs

Resource Description  Resource URI
Users Feed /frevvo/web/t/{tenantId}/api/users
User Entry/frevvo/web/t/{tenantId}/api/user/'''{id}'''
ApplicationFeed /frevvo/web/t/{tenantId}/api/apps?ownerId='''{userId}'''
ApplicationEntry/frevvo/web/t/{tenantId}/api/app/'''{id}'''
ThemeFeed/frevvo/web/t/{tenantId}/api/themes?ownerId='''{userId}'''
ThemeEntry /frevvo/web/t/{tenantId}/api/theme/'''{id}'''
FormTypeFeed/frevvo/web/t/{tenantId}/api/formtypes?ownerId='''{appId}'''
FormTypeEntry /frevvo/web/t/{tenantId}/api/formtype/'''{id}'''
  
  
  
  
  
  
  

 

...

SchemaFeed/frevvo/web/t/{tenantId}/api/schemas?ownerId='''{appId}'''
SchemaEntry/frevvo/web/t/{tenantId}/api/schema/'''{id}'''
ControlTypeFeed/frevvo/web/t/{tenantId}/api/controltypes?ownerId='''{formTypeId}'''
ControlTypeEntry/frevvo/web/t/{tenantId}/api/controltype/'''{id}'''
SubmissionFeed /frevvo/web/t/{tenantId}/api/submissions
SubmissionEntry /frevvo/web/t/{tenantId}/api/submission/'''{id}'''
  

 

{| border="1" cellpadding="2" align="center"
|+ '''''

!
|-valign="top"
|width="10%"|
|width="30%"|

...

|-valign="top"
|width="10%"| SchemaFeed 
|width="30%"| /frevvo/web/t/{tenantId}/api/schemas?ownerId='''{appId}''' 

|-valign="top"
|width="10%"| SchemaEntry 
|width="30%"| /frevvo/web/t/{tenantId}/api/schema/'''{id}''' 

|-valign="top"
|width="10%"| ControlTypeFeed 
|width="30%"| /frevvo/web/t/{tenantId}/api/controltypes?ownerId='''{formTypeId}''' 

|-valign="top"
|width="10%"| ControlTypeEntry 
|width="30%"| /frevvo/web/t/{tenantId}/api/controltype/'''{id}''' 

|-valign="top"
|width="10%"| SubmissionFeed 
|width="30%"| /frevvo/web/t/{tenantId}/api/submissions

|-valign="top"
|width="10%"| SubmissionEntry 
|width="30%"| /frevvo/web/t/{tenantId}/api/submission/'''{id}'''

|}

* Note that the ''ownerId'' query parameter is optional when querying any feed but required when inserting a new entry into the feed (more details on this below)

...