Description: Retrieve packages files types
URL: http://{your-server-url}/api/v2/core/software/packages/files/types
Method: GET
Token Required: True
token: {token}
content-type: application/json or content-type: application/xml
Parameter | Type | Nullable | Description |
---|---|---|---|
page | int | True | page number |
ids | int | True | comma separated values, eg. ids=1,2,3 |
rpp | int | True | records per page, default = 50, max = 500 |
names | string | True | Comma seperated values, e.g. names=files1,files2 |
sort | string | True | sorting fields: id, names. Comma seperated values, unary negative to imply descending sort order, e.g. sort=-id |
Example: http://{your-server-url}/api/v2/core/software/packages/files/types?page=100&ids=100&rpp=100
Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Software.SoftwareResponse
Parameter | Type |
---|---|
Response.PackageFileTypes | Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Software.PackageFileType[] |
Response.CurrentPage | int |
Response.TotalPages | int |
Response.TotalCount | int |
Response.Rpp | int |
<SoftwareResponse xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Software" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <DebugMessage xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">String</DebugMessage> <Errors xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages"> <Error> <Code>String</Code> <Message>String</Message> <StackTrace>String</StackTrace> </Error> </Errors> <Status xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">Success</Status> <CurrentPage>123</CurrentPage> <PackageFileTypes xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Software"> <a:PackageFileType> <a:Id>123</a:Id> <a:Name>String</a:Name> </a:PackageFileType> </PackageFileTypes> <Rpp>123</Rpp> <TotalCount>123</TotalCount> <TotalPages>123</TotalPages> </SoftwareResponse>
{ "DebugMessage":"String", "Errors":[ { "Code":"String", "Message":"String", "StackTrace":"String" } ], "Status":1, "CurrentPage":123, "PackageFileTypes":[ { "Id":123, "Name":"String" } ], "Rpp":123, "TotalCount":123, "TotalPages":123 }