What can I help you with?
NVIDIA UFM Cable Validation Tool v1.5.0

Users Management APIs

  • Description – Gets all users.

  • Request URL – GET /cablevalidation/users

  • Response Content Type – application/json

  • Status Codes

    • 200 – OK

    • 500 – INTERNAL SERVER ERROR

  • Response Data Example

    Copy
    Copied!
                

    [ { "name": "admin", "account_type": "admin" } ]

  • Description – Gets the user by the given name.

  • Request URL – GET /cablevalidation/users/<user_name>

  • Response Content Type – application/json

  • Status Codes

    • 200 – OK

    • 404 – NOT FOUND

  • Response Data Example

    Copy
    Copied!
                

    { "name": "admin", "account_type": "admin" }

  • Description – Creates a user.

  • Request URL – POST /cablevalidation/users

  • Response Content Type – application/json

  • Request Data Example

    Copy
    Copied!
                

    {"account_type":"cabler","password":"user1","name":"user1"}

  • Status Codes

    • 201 – CREATED

    • 500 – INTERNAL SERVER ERROR

    • 400 – BAD REQUEST

  • Response - 201: Created

  • Description – Updates account type or password or both.

  • Request URL – PATCH /cablevalidation/users/<user_name>

  • Response Content Type – application/json

  • Request Data Example

    Copy
    Copied!
                

    {"account_type":"nvidia","password":"test"}

  • Status Codes

    • 204 – NO CONTENT

    • 500 – INTERNAL SERVER ERROR

    • 400 – BAD REQUEST

  • Response - NA

  • Description – Deletes user by the given name.

  • Request URL – DELETE /cablevalidation/users/<user_name>

  • Response Content Type – application/json

  • Status Codes

    • 204 – NO CONTENT

    • 500 – INTERNAL SERVER ERROR

  • Response - NA

  • Description – Gets user account types.

  • Request URL – GET /cablevalidation/users/account_types

  • Response Content Type – application/json

  • Status Codes

    • 200 – OK

    • 500 – INTERNAL SERVER ERROR

  • Response Data Example

    Copy
    Copied!
                

    ["nvidia", "admin", "cabler", "developer"]

© Copyright 2025, NVIDIA. Last updated on May 5, 2025.