Add Item to Mapping Set
post
https://api.flxpoint.com/mapping-set/{id}/itemUse this when you want to create 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 will add a Mapping Set Item
Request
Body
application/jsonarray[MappingSetItem]
idintegermappingSetIdintegercreatedByUserIdintegercreatedAtstring (date-time)updatedAtstring (date-time)fromValuestringrequiredtoValuestringExample request
post
/mapping-set/{id}/itemcurl -X POST "https://api.flxpoint.com/mapping-set/{id}/item" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '[
{
"id": 0,
"mappingSetId": 0,
"createdByUserId": 0,
"createdAt": "2026-04-20T00:00:00Z",
"updatedAt": "2026-04-20T00:00:00Z",
"fromValue": "string",
"toValue": "string"
}
]'Example body ยท application/json
[
{
"id": 0,
"mappingSetId": 0,
"createdByUserId": 0,
"createdAt": "2026-04-20T00:00:00Z",
"updatedAt": "2026-04-20T00:00:00Z",
"fromValue": "string",
"toValue": "string"
}
]Responses
200OK
No schema documented for this status.
OpenAPI fragment
{
"post": {
"summary": "Add Item to Mapping Set",
"description": "This will add a Mapping Set Item",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MappingSetItem"
}
}
}
}
},
"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