# Configure Access Policies for Bulk API Let's create a new client and an access policy that allows the client to use only bulk API ```yaml PUT / - resourceType: Client id: bulk-client secret: secret grant_types: ['basic'] - resourceType: AccessPolicy id: bulk-client-dump engine: matcho matcho: $one-of: - uri: /$dump-sql request-method: post - uri: "#/.*/\\$dump$" request-method: get - uri: "#/.*/\\$dump-csv$" request-method: get - uri: $one-of: - /$import - /fhir/$import request-method: post - uri: $one-of: - /$load - /fhir/$load - "#/.*/\\$load$" link: - {id: 'bulk-client', resourceType: 'Client'} ```