# Policy
You can use the Policy resource to access the policies that a merchant has configured for their shop, such as their refund and privacy policies.
Only the shop owner can edit this information from the Shopify admin. The Policy resource lets you only retrieve information about a shop's policies.
## Resource Properties ### Policy * title: The name of the policy. * Type: x-string * Example: {"title"=>"Refund Policy"} * body: A description of the policy. * Type: x-string * Example: {"body"=>"You have 30 days to get a refund"} * url: The public URL of the policy. * Type: x-string * Example: {"url"=>"https://jsmith.myshopify.com/548380009/policies/878590288"} * created_at: The date and time (ISO 8601 format) when the policy was created. * Type: x-string * Example: {"created_at"=>"2012-02-15T15:12:21-05:00"} * updated_at: The date and time (ISO 8601 format) when the policy was last modified. * Type: x-string * Example: {"updated_at"=>"2012-08-24T14:01:47-04:00"} * handle: A unique identifer for the policy used to build the policy's URL. * Type: x-string * Example: {"handle"=>"terms-of-service"} ## Retrieves a list of the shop's policies Retrieves a list of the shop's policies ### Endpoint /admin/api/#{api_version}/policies.json (GET) ### Parameters * api_version (required): ### Responses #### 200 Retrieves a list of the shop's policies Examples: ##### Retrieve a list of the shop's policies Request: ``` GET /admin/api/unstable/policies.json ``` Response: ``` HTTP/1.1 200 OK {"policies":[{"body":"You have 30 days to get a refund","created_at":"2025-01-02T11:31:46-05:00","updated_at":"2025-01-02T11:31:46-05:00","handle":"refund-policy","title":"Refund policy","url":"https://jsmith.myshopify.com/548380009/policies/997884056"}]} ```