Skip to main content
GET
/
v1
/
organizations
/
{organizationUid}
/
seed-groups
/
{seedGroupUid}
/
seeds
cURL
curl --request GET \
  --url https://client.synack.com/api/asset-discovery/v1/organizations/{organizationUid}/seed-groups/{seedGroupUid}/seeds \
  --header 'Authorization: Bearer <token>'
{
  "seeds": [
    {
      "name": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "createdBy": "<string>",
      "uid": "<string>",
      "seedGroupUid": "<string>",
      "organizationUid": "<string>",
      "tags": [
        "<string>"
      ],
      "updatedAt": "2023-11-07T05:31:56Z",
      "updatedBy": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

organizationUid
string
required

Unique identifier for an organization group. Unique identifier for an organization.

Pattern: ^[-_0-9a-z]{1,50}
seedGroupUid
string
required

Unique identifier for a seed group.

Pattern: ^[0-9a-f]{12}

Query Parameters

perPage
integer<int32>

Requested page size for pagination. A server-selected default of 100 will be used when no perPage is requested via query parameter.

Required range: 1 <= x <= 5000
page
integer<int32>

Page to retrieve in paginated response. A server-selected default of 1 will be used when no page is requested via query parameter.

Required range: x >= 1
sort
enum<string>
default:name

Optional property to sort results by.

Available options:
name,
seedType,
createdAt,
updatedAt,
createdBy
sortDir
enum<string>
default:asc

Direction of sort-order for items in the response.

Available options:
asc,
desc

Optional query parameter for a search string that will be used to match within seed name.

seedType
enum<string>[]

Filter the response to include only seeds with a seed type.

Available options:
ip,
domain,
cidr,
ip_range
tag
string[]

Optional query parameter for a tag that will be used to filter seeds.

Response

Paginated seeds.

seeds
object[]