Search Results for

    Show / Hide Table of Contents

    Method UserTableUpdateRow

    UserTableUpdateRow(String, String, List<String>)

    Updates specific row of a user table

    Declaration
    long UserTableUpdateRow(string connectionId, string userTable, List<string> rowData)
    Parameters
    Type Name Description
    System.String connectionId

    The connection id to identify your connection. See also ConnectionId

    System.String userTable

    The user table whose row is updated

    System.Collections.Generic.List<System.String> rowData

    The new values of the row to update. The values need to be complete and in the right order

    Returns
    Type Description
    System.Int64
    Examples

    POST https://YourServerName/InfoShare/Json/UserTable/UserTableUpdateRow

    This example illustrates how a single row of a user table can be updated.

    {
        "connectionId": "936210c1-958a-4078-ab83-5ee1757facb5",
        "userTable": "UserTable__BenutzerUndTelefonnummer",
        "rowData": [
            "1",
            "Benutzer1",
            "+43593420932"
        ]
    }

    Response:

    {
        "UserTableUpdateRowResult": 1
    }
    Exceptions
    Type Condition
    ServiceException

    The connection id {connectionId} isn't valid or has expired (10008)

    ServiceException

    Verification code is needed: Verification code not yet verified (10152)

    ServiceException

    Not enough rights ({accessOperationName}, {accessOperationId}) (10071)

    Back to top Copyright © Kendox