GET api/pro/product-addons/{id}
Gets a ProductAddon by id.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The id of the ProductAddon. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Return the ProductAddon of the specified id.
ProductAddonResponseName | Description | Type | Additional information |
---|---|---|---|
Id | string |
None. |
|
Name | string |
None. |
|
IsFree | boolean |
None. |
|
Archived | boolean |
None. |
|
Libraries | Collection of string |
None. |
|
EntityActivity | EntityActivityDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "sample string 1", "Name": "sample string 2", "IsFree": true, "Archived": true, "Libraries": [ "sample string 1", "sample string 2" ], "EntityActivity": { "LastModifiedDate": "2025-06-23T12:56:26.9221988+00:00", "CreatedDate": "2025-06-23T12:56:26.9221988+00:00", "LastModifiedBy": "sample string 3", "CreatedBy": "sample string 4" } }