Product Phase Endpoints
Defines the API endpoints available for product phase operations.
Each case maps to a specific URL, HTTP method, and optional query parameters used by the networking layer to build requests.
Inheritors
Types
Endpoint for replacing all phases on a product in a single request (PATCH /v1/products/{productId}/phases/bulk_update).
Endpoint for creating a new phase on a product (POST /v1/products/{productId}/phases).
Endpoint for deleting a specific phase from a product (DELETE /v1/products/{productId}/phases/{phaseId}).
Endpoint for retrieving all phases of a product (GET /v1/products/{productId}/phases).
Endpoint for retrieving a specific phase by identifier (GET /v1/products/{productId}/phases/{phaseId}).
Endpoint for updating a specific phase on a product (PATCH /v1/products/{productId}/phases/{phaseId}).
Properties
The fully qualified URL string for this endpoint.
HTTP method, e.g. "GET", "POST", "DELETE".
Optional query-string parameters appended to endpointURL.