Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When you import a flow package into a deployment, you may need to remap the source and output of the flow to use production versions of your data. This capability has been present in the product for file-based sources and targets. Now, it's available for relational sources and targets. For more information, see Define Import Mapping Rules.

Changes for Release 6.4

Request format for assigning connection permissions endpoint has changed

For this endpoint:

Code Block
/v4/connections/<cid>/permissions/

where:

  • <cid> is in the internal connection identifier.

The request payload format has changed.

Before Release 6.4, the request format was as follows:

Code Block
[
  {
    "personId": 3,
    "role": "readOnly"
  }
]

Beginning in Release 6.4, the request format is as follows:

Code Block
{
  "data": [
    {
      "person": {
        "id": 3
      },
      "role": "readOnly"
    }
  ]
}


Info

NOTE: The old request format is no longer supported.

For more information, see API Connections Permissions Create User v4.

v4 version of password reset request endpoint

...