action bluemix_get_registry_namespaces { label: "Retrieve the namespace of an organization." description: "This endpoint retrieves the namespace that was set for the organization that owns the current space (corresponding IBM Containers command: `cf ic namespace get`)." provider: bluemix method: GET path: "/registry/namespaces" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { type: "object" properties: { namespace: { type: "string" description: "The namespace that is either set for an organization, or a namespace that is not available to be used in Bluemix." } } } }