GET v1/Delivery/Settings/Plans

User roles allowed to make this request: DomainAdministrator RepositoryManager

Permissions required to make this request: Repository.Read

Gets a list of repository plans.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of repository plans.

Response Message

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "Price": {
      "Currency": "sample string 1",
      "Value": 2.0
    }
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "Price": {
      "Currency": "sample string 1",
      "Value": 2.0
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfRepositoryPlan xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models.Delivery">
  <RepositoryPlan>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Price>
      <Currency>sample string 1</Currency>
      <Value>2</Value>
    </Price>
  </RepositoryPlan>
  <RepositoryPlan>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Price>
      <Currency>sample string 1</Currency>
      <Value>2</Value>
    </Price>
  </RepositoryPlan>
</ArrayOfRepositoryPlan>