Versions Compared

Key

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

...

Generating an auth token in Postman

Follow these steps:

  1. Select your workspace.

  2. Create a request

  3. Set the HTTP method to POST.

  4. Enter the Fuse instance URL:
    https://<instance_name>.fuseuniversal.com/api/v4.

...

  1. 4/token

  2. Select Body tab.

  3. Select form-data sub-tab.

  4. Set a couple of key-value pairs:

    • First KEY: login_name; VALUE: <your_login_name>

    • Second KEY: password; VALUE: <your_password>

  5. Press the Enter key or click on the Send button.

  6. Expected Status Code: 201 Created

  7. Make a note of the auth_token value from the response body to use for requests in later Manage Users Endpoint Examples.

Info

Example of auth_token with valid URL:

https://<instance_name>.fuseuniversal.com/?auth_token=Rn26mdxAs1_jjzVt__ySga

...

Code Block
languagebash
curl --location --request POST 'https://<instance_name>.fuseuniversal.com/api/v4.34/token' --form 'login_name=<api_user>' --form 'password=<api_user_password>’'

...