GET api/v1/packages/{softwareId}
Get details regarding a specific software.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| softwareId | integer |
Required |
Body Parameters
SoftwarePricingPackageBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
Required |
|
| Request | SoftwarePricingPackageRequest |
Required |
Request Formats
application/json, text/json
Sample:
{
"Authentication": {
"Id": "sample string 1",
"Key": "sample string 2"
},
"Request": {
"Email": "sample string 1"
}
}
application/xml, text/xml
Sample:
<SoftwarePricingPackageBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Payments.Api.Models">
<Authentication>
<Id>sample string 1</Id>
<Key>sample string 2</Key>
</Authentication>
<Request>
<Email>sample string 1</Email>
</Request>
</SoftwarePricingPackageBindingModel>
Response Information
Resource Description
PricingPackagesOutgoingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | MessageModel |
None. |
|
| Response | IPricingPackageResponseModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": {
"Code": "sample string 1",
"Description": "sample string 2"
},
"Response": null
}
application/xml, text/xml
Sample:
<PricingPackagesOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Payments.Api.Models">
<Message>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Message>
<Response i:nil="true" />
</PricingPackagesOutgoingModel>