GET papi/v1/leveloutbound/LevelInfo?level={level}
Security
Secured API
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| level | string | 
                                 Default value is  | 
                
Required Headers
| Name | Description | Sample | Type | Default | 
|---|---|---|---|---|
| Authorization | 
                        Represents the value of the authentication token. Allow multiple values: no.  | 
                    Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ... | string | None | 
| ConsumerId | 
                        Represents the value of the consumer id. Allow multiple values: no.  | 
                    2426 | integer | None | 
Optional Headers
| Name | Description | Sample | Type | Default | 
|---|---|---|---|---|
| ApplicationType | 
                        Represents the value of the consumer's application type. Allow multiple values: no.  | 
                    1 | ApplicationType | None | 
| Accept-Language | 
                        Represents the value of the desired language for translations. Allow multiple values: yes.  | 
                    es | string | en-US | 
Body Parameters
None.
Response Information
Resource Description
Collection of LevelDetails| Name | Description | Type | Additional information | 
|---|---|---|---|
| LevelName | string | 
                             None.  | 
                |
| LevelId | integer | 
                             None.  | 
                |
| ParentLevelId | integer | 
                             None.  | 
                |
| ParentLevel | string | 
                             None.  | 
                |
| Depth | integer | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "LevelName": "sample string 1",
    "LevelId": 2,
    "ParentLevelId": 3,
    "ParentLevel": "sample string 4",
    "Depth": 5
  },
  {
    "LevelName": "sample string 1",
    "LevelId": 2,
    "ParentLevelId": 3,
    "ParentLevel": "sample string 4",
    "Depth": 5
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfLevelDetails xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <LevelDetails>
    <LevelName>sample string 1</LevelName>
    <LevelId>2</LevelId>
    <ParentLevelId>3</ParentLevelId>
    <ParentLevel>sample string 4</ParentLevel>
    <Depth>5</Depth>
  </LevelDetails>
  <LevelDetails>
    <LevelName>sample string 1</LevelName>
    <LevelId>2</LevelId>
    <ParentLevelId>3</ParentLevelId>
    <ParentLevel>sample string 4</ParentLevel>
    <Depth>5</Depth>
  </LevelDetails>
</ArrayOfLevelDetails>