FlxpointAPI Help CenterBeta

Add Item to Mapping Set

posthttps://api.flxpoint.com/mapping-set/{id}/item

Use 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

Bodyapplication/json
array[MappingSetItem]
idinteger
mappingSetIdinteger
createdByUserIdinteger
createdAtstring (date-time)
updatedAtstring (date-time)
fromValuestringrequired
toValuestring

Example request

post/mapping-set/{id}/item
curl -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