POST
api/v1/getformlisting
Request Information
Body Parameters
QueryParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| Limit | integer |
None. |
|
| SearchText | string |
None. |
|
| SortField | string |
None. |
|
| SortDirection | string |
None. |
|
| IsB2C | boolean |
None. |
|
| SellerId | integer |
None. |
|
| AdminMemberId | integer |
None. |
|
| ClientId | integer |
None. |
|
| Sortorder | integer |
None. |
Request Formats
application/json, text/json
{
"PageNumber": 1,
"Limit": 2,
"SearchText": "sample string 3",
"SortField": "sample string 4",
"SortDirection": "sample string 5",
"IsB2C": true,
"SellerId": 7,
"AdminMemberId": 8,
"ClientId": 9,
"Sortorder": 10
}
text/html
{"PageNumber":1,"Limit":2,"SearchText":"sample string 3","SortField":"sample string 4","SortDirection":"sample string 5","IsB2C":true,"SellerId":7,"AdminMemberId":8,"ClientId":9,"Sortorder":10}
application/xml, text/xml
<QueryParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models"> <AdminMemberId>8</AdminMemberId> <ClientId>9</ClientId> <IsB2C>true</IsB2C> <Limit>2</Limit> <PageNumber>1</PageNumber> <SearchText>sample string 3</SearchText> <SellerId>7</SellerId> <SortDirection>sample string 5</SortDirection> <SortField>sample string 4</SortField> <Sortorder>10</Sortorder> </QueryParameters>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: FormListingModel
Response Formats
application/json, text/json
{
"TotalRecord": 1,
"TotalPages": 2,
"Forms": [
{
"Id": 1,
"FormGUID": "95c4cc92-0e82-43ee-9bf6-c2cef8796bff",
"FormName": "sample string 3",
"IsActive": true,
"IsLogicalDeleted": true,
"CreatedOn": "2026-02-04T11:10:19.6273252+00:00",
"CreatedBy": 7,
"ModifiedOn": "2026-02-04T11:10:19.6273252+00:00",
"ModifiedBy": 1,
"ClientId": 8,
"CategoryMasterId": 1
},
{
"Id": 1,
"FormGUID": "95c4cc92-0e82-43ee-9bf6-c2cef8796bff",
"FormName": "sample string 3",
"IsActive": true,
"IsLogicalDeleted": true,
"CreatedOn": "2026-02-04T11:10:19.6273252+00:00",
"CreatedBy": 7,
"ModifiedOn": "2026-02-04T11:10:19.6273252+00:00",
"ModifiedBy": 1,
"ClientId": 8,
"CategoryMasterId": 1
}
]
}
text/html
{"TotalRecord":1,"TotalPages":2,"Forms":[{"Id":1,"FormGUID":"95c4cc92-0e82-43ee-9bf6-c2cef8796bff","FormName":"sample string 3","IsActive":true,"IsLogicalDeleted":true,"CreatedOn":"2026-02-04T11:10:19.6273252+00:00","CreatedBy":7,"ModifiedOn":"2026-02-04T11:10:19.6273252+00:00","ModifiedBy":1,"ClientId":8,"CategoryMasterId":1},{"Id":1,"FormGUID":"95c4cc92-0e82-43ee-9bf6-c2cef8796bff","FormName":"sample string 3","IsActive":true,"IsLogicalDeleted":true,"CreatedOn":"2026-02-04T11:10:19.6273252+00:00","CreatedBy":7,"ModifiedOn":"2026-02-04T11:10:19.6273252+00:00","ModifiedBy":1,"ClientId":8,"CategoryMasterId":1}]}
application/xml, text/xml
<FormListingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.CatalogDesign">
<Forms>
<Form>
<CategoryMasterId>1</CategoryMasterId>
<ClientId>8</ClientId>
<CreatedBy>7</CreatedBy>
<CreatedOn>2026-02-04T11:10:19.6273252+00:00</CreatedOn>
<FormGUID>95c4cc92-0e82-43ee-9bf6-c2cef8796bff</FormGUID>
<FormName>sample string 3</FormName>
<Id>1</Id>
<IsActive>true</IsActive>
<IsLogicalDeleted>true</IsLogicalDeleted>
<ModifiedBy>1</ModifiedBy>
<ModifiedOn>2026-02-04T11:10:19.6273252+00:00</ModifiedOn>
</Form>
<Form>
<CategoryMasterId>1</CategoryMasterId>
<ClientId>8</ClientId>
<CreatedBy>7</CreatedBy>
<CreatedOn>2026-02-04T11:10:19.6273252+00:00</CreatedOn>
<FormGUID>95c4cc92-0e82-43ee-9bf6-c2cef8796bff</FormGUID>
<FormName>sample string 3</FormName>
<Id>1</Id>
<IsActive>true</IsActive>
<IsLogicalDeleted>true</IsLogicalDeleted>
<ModifiedBy>1</ModifiedBy>
<ModifiedOn>2026-02-04T11:10:19.6273252+00:00</ModifiedOn>
</Form>
</Forms>
<TotalPages>2</TotalPages>
<TotalRecord>1</TotalRecord>
</FormListingModel>
