Waiting for engine...
Skip to main content

spaceAccounts

To get a list of accounts for the authorized account that belong to the Space passed in the header as SPACE_GUID and optionally send Criteria object to search specific accounts.

An example of the request without Criteria is as follows:

    query space {
spaceAccounts {
id
name
}
}

An example of the request with Criteria is as follows:

    query catalogAccounts {
catalogAccounts(criteria:{
operator: CONTAINS,
argument: "Search String"
}) {
id
name
}
}

spaceAccounts(
criteria: Criteria
): [SpaceRefAccount]

Arguments

spaceAccounts.criteria ● Criteria input catalog-service

Type

SpaceRefAccount object catalog-service

Represents a reference to an account that is linked to a Space.

On this Page