About this resource
Representation of a paged collection of FieldGroup items
Properties
| Property | Description | Type |
|---|---|---|
| items | One page of this paged collection, which is a subcollection of the complete collection. | Collection of FieldGroup items |
| page | The current page of this paged collection. | int32 |
| pageSize | The current page size of this paged collection. | int32 |
| skip | The current skip size of this paged collection. | int32 |
| take | The current take size of this paged collection. | int32 |
| totalCount | The total count of items in this paged collection, not just on the current page. | int64 |
Relations
Actions
| Method | Action | Description | Response codes | ||||||
|---|---|---|---|---|---|---|---|---|---|
| POST /fieldgroups | add | Create a field group |
|
Examples
Searching for field groups
The parameters are specified as HTTP headers.
GET /fieldgroups HTTP/1.1 accept: application/hal+json filter: ModifiedOn in today sort: createdon page: 1 pageSize: 20
The parameters are specified as query string parameters.
GET /fieldgroups?filter=ModifiedOn+in+today&sort=createdon&page=1&pagesize=10 HTTP/1.1
The parameters are specified as a combination of query string parameters and HTTP headers.
GET /fieldgroups?filter=ModifiedOn+in+today&sort=createdon HTTP/1.1 page: 1 pageSize: 20
Creating a field group
POST /fieldgroups
{
"name": "myfieldgroupname",
"tag": "xml ",
"members": {
"addOrUpdate": ["1e2c7000-fbe5-4048-9e5c-a7fb00bc103d"]
"remove": ["c3782d20-fa8b-4f5b-8aba-a7fb00bd09c0","0c655ce8-5b9b-4546-b09d-92c728e03e08"]
}
}