--- title: checkoutProfile - GraphQL Admin description: >- Returns a [`CheckoutProfile`](https://shopify.dev/docs/api/admin-graphql/latest/objects/CheckoutProfile). Checkout profiles define the branding settings and UI extensions for a store's checkout experience. Stores can have one published profile that renders on their live checkout and multiple draft profiles for testing customizations in the checkout editor. api_version: unstable api_name: admin source_url: html: 'https://shopify.dev/docs/api/admin-graphql/unstable/queries/checkoutProfile' md: >- https://shopify.dev/docs/api/admin-graphql/unstable/queries/checkoutProfile.md --- # checkout​Profile query Requires access to the checkout and accounts editor. Returns a [`CheckoutProfile`](https://shopify.dev/docs/api/admin-graphql/latest/objects/CheckoutProfile). Checkout profiles define the branding settings and UI extensions for a store's checkout experience. Stores can have one published profile that renders on their live checkout and multiple draft profiles for testing customizations in the checkout editor. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/ID) required The ID of the checkout profile. *** ## Possible returns * Checkout​Profile [Checkout​Profile](https://shopify.dev/docs/api/admin-graphql/unstable/objects/CheckoutProfile) A checkout profile defines the branding settings and the UI extensions for a store's checkout. A checkout profile could be published or draft. A store might have at most one published checkout profile, which is used to render their live checkout. The store could also have multiple draft profiles that were created, previewed, and published using the admin checkout editor. *** ## Examples * ### checkoutProfile reference ## Query Reference ```graphql { checkoutProfile(id) { # checkoutProfile fields } } ```