Create ID Cards
          
      Beta
 
        
        
        Creates a specified number of ID cards for an existing ID card batch.
Path parameters
- 
    
  
The unique identifier for the business location.
 - 
    
  
The unique identifier for the ID card batch.
 
        POST
    /id-cards/v1/business-locations/{businessLocationId}/batches/{batchId}/cards
  
  curl \
 --request POST 'https://api.trial.lsk.lightspeed.app/id-cards/v1/business-locations/{businessLocationId}/batches/{batchId}/cards' \
 --header "Content-Type: application/json" \
 --data '{"cardCount":1}'
    
        Request examples
  
  {
  "cardCount": 1
}
        Response examples (201)
  
  {
  "batchId": 12345,
  "cards": [
    {
      "id": 98765,
      "consumerRecordId": 54321,
      "consumerId": 13579,
      "url": "https://example.com/id-cards/98765/qr-code"
    }
  ]
}