Attachment Types¶
Attachment Type Attributes¶
Attribute | Name |
---|---|
id | The ID of the given attachment type. |
description | The description of the given attachment type. |
Sample¶
{
"id": 1,
"description": "Test Files"
}
Endpoints¶
/api/attachment_types¶
GET¶
Returns a list of the available attachment types.
Parameters¶
Name | Description |
---|---|
partnership_id | The Partnership ID for the partnership you are interested in. The method will return all of the attachment types available for this partnership. |
Returns¶
Returns an array of all the attachment types available for the given partnership.
Sample¶
[
{
"id": 1,
"description": "Test Files"
},
{
"id": 2,
"description": "PDF Files"
}
]