Python SDK methods for StructuredTargets operations
Method | HTTP request | Description |
---|---|---|
get_structured_target | GET /structured_targets/ | Get Structured Target |
get_structured_targets | GET /structured_targets | Get Structured Targets |
GetStructuredTargetResponse get_structured_target(structured_target_id)Get Structured Target Get a single structured target by ID
Name | Type | Description | Notes |
---|---|---|---|
structured_target_id | str | Structured target ID |
Status code | Description |
---|---|
200 | Structured target retrieved successfully |
401 | Unauthorized - authentication required |
404 | Resource not found |
500 | Internal server error |
GetStructuredTargetsResponse get_structured_targets(status=status, page_size=page_size)Get Structured Targets Get all structured targets
Name | Type | Description | Notes |
---|---|---|---|
status | str | Filter by structured target status | [optional] |
page_size | int | Number of items per page (minimum 100, default 100) | [optional] [default to 100] |
Status code | Description |
---|---|
200 | Structured targets retrieved successfully |
401 | Unauthorized - authentication required |
500 | Internal server error |