Delete Item from Mapping Set
delete
https://api.flxpoint.com/mapping-set/{id}/itemUse this when you want to delete mappingset data through the API.
๐ X-API-TOKENโฑ 2 req/sToken: Account ยท Source ยท Channel
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
This endpoint will delete a mapping set item
Request
Body
application/jsonDelete mapping set items by ids or from values.
fromValuesarray[string]string
Example request
delete
/mapping-set/{id}/itemcurl -X DELETE "https://api.flxpoint.com/mapping-set/{id}/item" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"fromValues": [
"string"
]
}'Example body ยท application/json
{
"fromValues": [
"string"
]
}Responses
200OK
No schema documented for this status.
OpenAPI fragment
{
"delete": {
"summary": "Delete Item from Mapping Set",
"description": "This endpoint will delete a mapping set item",
"parameters": [],
"requestBody": {
"description": "Delete mapping set items by ids or from values.",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"fromValues": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
},
"responses": {
"200": {
"description": "OK"
}
}
}
}Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight