Postman API Examples - AUTH - GET - POST - DELETE

Team good day do you have examples for postman API calls JSON for AUTH - GET  - POST - DELETE.

Many thanks in advance.

Parents
  • This is not really something that is community specific.  All of our REST API documents contain a CURL sample, for using postman I would consult their documentation.  Its no different from any other HTTP request to an API with the exception of authentication which is also covered in the Developer docs under Authentication  

  • Thank you Patrick, maybe the below will show you what I am looking for or maybe you can point me in the correct direction for this post.

    Many thanks 

    Verint Example GET

    GET

    https://community.telligent.com/community/9/w/api-documentation/50736/list-user-rest-endpoint

     

    mysite.com/.../users.json

    https://mysite.com/api.ashx/v2/roles/mmouse@abc.com/users.json

    and the Auth looks like? 

    Verint Example Post

    POST

    community.telligent.com/.../create-user-rest-endpoint

     

     

    Post create user

    mysite.com/.../users.xml

     

    Username           string     Username           Required                            

    Password            string     Password            Required                            

    PrivateEmail       string     Private Email      Required            

     

    Body - example, but note how not all required fields are in the body.

     

    {

      "Users": [

        {

          "ContentId": "49fec544-6df7-4a82-872b-f8be586d5e9e",

          "ContentTypeId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",

          "Content": {

            "CreatedByUser": {

              "AvatarUrl": "avatarurl",

              "DisplayName": "displayname",

              "ProfileUrl": "profileurl",

              "Username": "username",

              "CurrentStatus": {

                "Author": {

                  "AvatarUrl": "avatarurl",

                  "DisplayName": "displayname",

                  "ProfileUrl": "profileurl",

                  "Username": "username",

                  "CurrentStatus": null,

                  "Id": null

    }}}}}]

    }

Reply
  • Thank you Patrick, maybe the below will show you what I am looking for or maybe you can point me in the correct direction for this post.

    Many thanks 

    Verint Example GET

    GET

    https://community.telligent.com/community/9/w/api-documentation/50736/list-user-rest-endpoint

     

    mysite.com/.../users.json

    https://mysite.com/api.ashx/v2/roles/mmouse@abc.com/users.json

    and the Auth looks like? 

    Verint Example Post

    POST

    community.telligent.com/.../create-user-rest-endpoint

     

     

    Post create user

    mysite.com/.../users.xml

     

    Username           string     Username           Required                            

    Password            string     Password            Required                            

    PrivateEmail       string     Private Email      Required            

     

    Body - example, but note how not all required fields are in the body.

     

    {

      "Users": [

        {

          "ContentId": "49fec544-6df7-4a82-872b-f8be586d5e9e",

          "ContentTypeId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",

          "Content": {

            "CreatedByUser": {

              "AvatarUrl": "avatarurl",

              "DisplayName": "displayname",

              "ProfileUrl": "profileurl",

              "Username": "username",

              "CurrentStatus": {

                "Author": {

                  "AvatarUrl": "avatarurl",

                  "DisplayName": "displayname",

                  "ProfileUrl": "profileurl",

                  "Username": "username",

                  "CurrentStatus": null,

                  "Id": null

    }}}}}]

    }

Children