Skip to main content
POST
/
folder
/
{folder_id}
Python
from superu import SuperU

client = SuperU("YOUR_SUPERU_API_KEY")

payload = {
    "folder_id": "fld_01HXR9A3RWQXTQED0KH43WSYH1"
}

response = client.folders.get(**payload)
print(response)
{
  "status": "success",
  "folder": {
    "folder_id": "fld_01HXR9A3RWQXTQED0KH43WSYH1",
    "folder_name": "Outbound Agents",
    "description": "Sales and support"
  }
}

Authorizations

superU-Api-Key
string
header
required

Your SuperU API key.

Path Parameters

folder_id
string
required

Folder ID

Example:

"fld_01HXR9A3RWQXTQED0KH43WSYH1"

Response

Folder details

Generic Response schema.

status
string

Status value.

Example:

"success"

message
string

Message value.

Example:

"Request completed successfully"

data
object

Data value.