Create an ID Card Batch
          
      Beta
 
        
        
        Creates a new batch of ID cards for a specific business location.
        POST
    /id-cards/v1/business-locations/{businessLocationId}/batches
  
  curl \
 --request POST 'https://api.trial.lsk.lightspeed.app/id-cards/v1/business-locations/{businessLocationId}/batches' \
 --header "Content-Type: application/json" \
 --data '{"name":"Sample Batch Name"}'
    
        Request examples
  
  {
  "name": "Sample Batch Name"
}
        Response examples (201)
  
  {
  "batchId": 12345,
  "name": "string",
  "businessLocationId": 67890
}