Skip to main content
GET
/
radius
/
migration
/
columns
/
{type}
Get Importable Columns
curl --request GET \
  --url https://api.altostrat.io/radius/migration/columns/{type} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "type": "users",
    "columns": [
      {
        "key": "username",
        "label": "Username / Email",
        "required": true,
        "description": "<string>"
      }
    ],
    "example": {
      "download_url": "/radius/migration/examples/users.csv",
      "filename": "example-users.csv",
      "description": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Enter your API key in the format: Bearer <token>

Path Parameters

type
enum<string>
required

The type of data to be imported.

Available options:
users,
groups,
nas

Response

A list of available columns and an example file download link.

data
object