View all Strategy Types by Workspace

get

/api/restapi/strategyType/workspace/{workspaceId}

This endpoint returns strategy types that meet the following requirements:
  • The object is associated with a workspace with an ID value that matches the value of the {workspaceId} path parameter.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : List<ApiEntityStrategyType>
Type: array
Title: List<ApiEntityStrategyType>
Show Source
Nested Schema : ApiEntityStrategyType
Type: object
Title: ApiEntityStrategyType
Show Source
  • Allowed Values: [ "OWNED", "INHERITED" ]
    The type of association in the relationship between the strategy type and the workspace. Possible values are Owned and Inherited.
  • Allowed Values: [ "STRATEGY_ROOK", "STRATEGY_PAWN", "STRATEGY_KNIGHT", "STRATEGY_BISHOP", "STRATEGY_QUEEN", "STRATEGY_KING" ]
    A graphical representation of a strategy type.
  • Maximum Length: 255
    The name of a strategy type.
  • Allowed Values: [ "MANUAL", "AUTOMATIC" ]
    How data is shared between parent and child workspaces.
    Manual: Data can be pulled down by child workspaces. This is the default option.
    Automatic: Data is automatically shared with all child workspaces.
  • The system-generated identifier of a strategy type. This value should not be provided in create operation request data, however, it is required for update requests.
  • Date when the record was last updated.
  • Minimum Length: 0
    Maximum Length: 60
    The user-specified identifier of a workspace.
  • The system-generated identifier of a workspace.

204 Response

Successful operation with no content.

404 Response

The Strategy Type does not exist, or you do not have access to it.
Back to Top