# Platform ## Retrieve **get** `/platform` Gets platform details for the workspace ### Returns - `data: object { created, displayName, workspaceId, modified }` Platform object - `created: string` ISO 8601 timestamp when the platform was created - `displayName: string` Display name for the platform - `workspaceId: string` Workspace ID this platform belongs to - `modified: optional string` ISO 8601 timestamp when the platform was last modified ### Example ```http curl https://api.us-west-2.fragment.dev/platform ``` ## Update **post** `/platform` Updates platform details (creates if not exists) ### Body Parameters - `displayName: string` Display name for the platform ### Returns - `data: object { created, displayName, workspaceId, modified }` Platform object - `created: string` ISO 8601 timestamp when the platform was created - `displayName: string` Display name for the platform - `workspaceId: string` Workspace ID this platform belongs to - `modified: optional string` ISO 8601 timestamp when the platform was last modified ### Example ```http curl https://api.us-west-2.fragment.dev/platform \ -H 'Content-Type: application/json' \ -d '{ "displayName": "Acme Corp" }' ```