# Start noname card bulk process Start noname card bulk/batch process. Each card is identified with an `external_id`. This endpoint starts the process begun with [Create noname card bulk](ref:create-bulk). Pass the bulk ID returned from that endpoint here. Each card created generates an event - [Card created](https://developers.pismo.io/events/docs/cards-create-1) - with event data that includes the card ID, bulk ID, and external ID. You pass the card ID to the [Associate noname card with customer](ref:post-v2-card-bind) endpoint. For more information on events and setting up event notifications, rerfer to the [Data and reporting](doc:data-reporting-overview) guide. For more information on embossing, refer to the [Physical card embossing](doc:physical-card-embossing) guide. For detailed information about embossing flows, refer to [Embossing flows](doc:physical-card-embossing#embossing-flows). # OpenAPI definition ```json { "openapi": "3.0.1", "info": { "title": "Card issuing - Cards", "version": "1.4.6", "description": "Card endpoints API", "contact": { "name": "API Support", "url": "https://developers.pismo.io/support/" }, "license": { "name": "Copyright Pismo" } }, "servers": [ { "url": "https://sandbox.pismolabs.io", "description": "Sandbox API server for testing." }, { "url": "https://gw-pci.pismolabs.io", "description": "Sandbox PCI API server for testing" } ], "security": [ { "BearerAuth": [] } ], "tags": [ { "name": "Noname", "description": "Noname card endpoints. Noname cards are batch-generated and not initially associated with customers, which occurs later." } ], "components": { "schemas": { "ABUenabled": { "type": "boolean", "description": "\nThis field is **DEPRECATED**. For more information, refer to the [ABU documentation](https://developers.pismo.io/pismo-docs/docs/cards-overview-1#mastercards-automatic-billing-updater-option) in the Cards overview guide.\n\n\nWhen a card is created or reissued, or its account credentials change, Mastercard is notified if this feaure is enabled. Notification updates are sent to Mastercard on a daily basis. \n\nFor more information, refer to Mastercard's ABU documentation.\n", "example": true, "deprecated": true }, "BulkResponse": { "type": "object", "properties": { "abu_enabled": { "$ref": "#/components/schemas/ABUenabled" }, "contactless_enabled": { "$ref": "#/components/schemas/Contactless" }, "embossing_custom_field": { "$ref": "#/components/schemas/EmbossingCustomField" }, "id": { "type": "string", "description": "Bulk ID.", "example": "Bkdj9999" }, "metadata": { "additionalProperties": true, "type": "object", "description": "Additional key-value object information for operation." }, "program_id": { "$ref": "#/components/schemas/ProgramID" }, "template_id": { "$ref": "#/components/schemas/TemplateID" }, "size": { "type": "integer", "description": "Bulk size - number of cards", "example": 1200 }, "status": { "$ref": "#/components/schemas/BulkStatus" }, "validity_period_hours": { "$ref": "#/components/schemas/ValidityPeriodHours" } }, "example": { "id": "3e8d9c51-64c7-420d-ae53-87e2b76cf45e", "program_id": 8519, "template_id": "EAFA693A-57B2-4029-97F3-D20D6F06D79B", "embossing_custom_field": "Please make cards metal, not plastic", "contactless_enabled": false, "abu_enabled": false, "metadata": { "trackingID": 345660 }, "status": "CREATED", "size": 2 } }, "BulkStatus": { "type": "string", "description": "Bulk noname card job status.", "example": "CREATED", "enum": [ "CREATED", "RUNNING", "COMPLETED" ] }, "Contactless": { "type": "boolean", "description": "For physical cards. Is card enabled for contactless transactions? \n \nWith contactless transactions, you hold or tap the card on contactless-enabled card reader to complete a transaction. This requires that both the card and the terminal have Near Field Communication (NFC) technology. Most embossers can create plastic contactless cards.\n\nDefault is `true`.\n", "default": true, "example": false }, "EmbossingCustomField": { "type": "string", "description": "For physical cards. Additional information for embossing company. For example: tracking number or whether the card should be plastic or metal. \n\nYou can use this field for any embossing needs specific to your business. Whatever is sent must be agreed upon with the embosser—what to send, what values to send, what format to send, what size to send for each value, and so on.\n", "example": "Tracking ID = 5859930", "maxLength": 1000 }, "ProgramID": { "type": "integer", "description": "Pismo program ID", "example": 7654 }, "TemplateID": { "type": "string", "description": "Template ID. Templates are used to implement the BIN override feature. For more information, refer to the [BIN override](https://developers.pismo.io/pismo-docs/docs/bin-override-feature) guide.\n", "example": "EAFA693A-57B2-4029-97F3-D20D6F06D79B" }, "ValidityPeriodHours": { "type": "integer", "description": "How long, in hours, the card is valid. Cannot exceed the card's `expiration_date`. Once this period is exceeded, and the card has a `NORMAL`, `BLOCKED`, `PENDING`, `WARNING` or `REISSUED` status, its status becomes `INOPERATIVE`. \n\nThis field is used to calculate the datetime value for `valid_until`.\n\nFor `VIRTUAL` and `PLASTIC` cards. Setting this field for `TEMPORARY` or `RECURRING` cards returns a **400 Bad request** error. \n", "example": 240 } }, "securitySchemes": { "BearerAuth": { "type": "http", "scheme": "bearer", "description": "Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in an \"Unauthorized\" error.", "bearerFormat": "JWT" } }, "responses": { "400BadRequest": { "description": "Bad Request" }, "404NotFound": { "description": "The specified resource was not found" }, "409Conflict": { "description": "Specified resource status conflict with current request" }, "500InternalServer": { "description": "Internal server error" } } }, "paths": { "/cards/v1/bulks/{bulkID}/start": { "post": { "operationId": "start-bulk", "summary": "Start noname card bulk process", "description": "Start noname card bulk/batch process. Each card is identified with an `external_id`. This endpoint starts the process begun with [Create noname card bulk](https://developers.pismo.io/pismo-docs/reference/create-bulk). Pass the bulk ID returned from that endpoint here.\n\nEach card created generates an event - [Card created](https://developers.pismo.io/events/docs/cards-create-1) - with event data that includes the card ID, bulk ID, and external ID. You pass the card ID to the [Associate noname card with customer](https://developers.pismo.io/pismo-docs/reference/post-v2-card-bind) endpoint. For more information on events and setting up event notifications, rerfer to the [Data and reporting](https://developers.pismo.io/pismo-docs/docs/data-reporting-overview) guide.\n\nFor more information on embossing, refer to the [Physical card embossing](https://developers.pismo.io/pismo-docs/docs/physical-card-embossing) guide.\n\nFor detailed information about embossing flows, refer to [Embossing flows](https://developers.pismo.io/pismo-docs/docs/physical-card-embossing#embossing-flows).\n", "tags": [ "Noname" ], "parameters": [ { "in": "path", "name": "bulkID", "description": "Bulk ID", "schema": { "type": "string" }, "required": true } ], "responses": { "202": { "description": "Bulk was started and will be processed asynchronously", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/BulkResponse" } } } }, "400": { "$ref": "#/components/responses/400BadRequest" }, "404": { "$ref": "#/components/responses/404NotFound" }, "409": { "$ref": "#/components/responses/409Conflict" }, "500": { "$ref": "#/components/responses/500InternalServer" } } } } } } ```