_linkedin_partner_id = "503794"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id);
ID123

Knowledge Base

Delete Card API V2

Delete Card API V2 Introduction

This API is used to remove card data from an account. Here, the api-key, card-template-id, and card-id will be used to identify the specific card data records that need to be deleted. Through the API you can delete any card data record including cards that are installed. If you delete a card that was installed, the system will also delete the data that associates it with an app user and device. If you receive a failure response to this API call, the card data has not been deleted. 

Request Format

POST /api/v2/ HTTP/1.1
Host: secure-{REGION}.id123.io
X-API-KEY: API_KEY
Content-Type: application/json
Content-Length: 145

{  
   "action": "delete-card",
   "card-template-id": "CARD_TEMPLATE_ID",
   "card-id": "CARD_ID",
}

Success Response

{
    "status": "success",
    "code": "SUCCESS CODE",
    "message": "SUCCESS MESSAGE",
    "card-id": "CARD_ID",
    "card-template-id": "CARD_TEMPLATE_ID"
}

Failure Response

{
    "status": "failure",
    "code": "ERROR CODE",
    "message": "ERROR MESSAGE.",
    "card-id": "CARD_ID",
    "card-template-id": "CARD_TEMPLATE_ID"
}

.

,

.

Go to Top