GET v1/Paragraph/ParagraphTypes
Get a list of all valid paragraph types.
Roles Allowed
admin, editor
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ParagraphTypeName | Description | Type | Additional information |
---|---|---|---|
ParagraphTypeId |
Unique identifier for the ParagraphType |
integer |
None. |
ParagraphTypeValue |
The name for the ParagraphType |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ParagraphTypeId": 1, "ParagraphTypeValue": "sample string 2" }, { "ParagraphTypeId": 1, "ParagraphTypeValue": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfParagraphType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3.ApiDto"> <ParagraphType> <ParagraphTypeId>1</ParagraphTypeId> <ParagraphTypeValue>sample string 2</ParagraphTypeValue> </ParagraphType> <ParagraphType> <ParagraphTypeId>1</ParagraphTypeId> <ParagraphTypeValue>sample string 2</ParagraphTypeValue> </ParagraphType> </ArrayOfParagraphType>