Skip to main content

Document Common Errors and Tricks of the Trade

  • September 22, 2023
  • 6 replies
  • 155 views

spencer_engel
Forum|alt.badge.img+4

Hi there - 

 

I’m a fairly novice API user but am trying to work my way up to at least - oh - half as competent as @peter_robson and @sdrostgainsightcom. I’ve taken the Gainsight API training and have exchanged emails with the trainer himself (Vivek Gaurav, who is awesome). 

 

However, I’m constantly finding myself just sort of throwing up my hands. Postman is a new tool to me, so when I get an “Internal Server Error” when trying to connect my PUT Timeline API Update, one day after it worked just fine, I have no idea how to troubleshoot that. I don’t see anything on Gainsight, nor on Postman’s community, that would help me. I also was lost when it came time to actually update some Timeline activities. The documentation on Gainsight Go is nice, but I feel like it stops short of actually telling me: When you’re in Postman, hover on the three dots, click “Run Collection” and unselect everything except for “PUT Timeline API Update,” then make sure your Excel headers exactly match the API Names of the fields in Gainsight’s Data Management, THEN make sure your data matches the exact format Gainsight is expecting. 

 

It would be great to have a document or Community post or something that covers a common example or two from soup to nuts, complete with common troubleshooting steps along the way. I feel like between the training, the support docs, and Community posts, I’m always having to cobble things together, and even then I don’t always get the answer I need. 

 

(Note: If a document or post already exists like this, please send it my way and feel free to call me a dummy!)

6 replies

Forum|alt.badge.img+5
  • Gainsight Employee ⭐️
  • 1 reply
  • September 22, 2023

The world of APIs is very much like that since every product will have a different API, even Gainsight’s APIs are different between features.  In most cases documentation is gospel but sometimes the API will give good error messages in the console log. 

I don’t think it would be a bad idea to have more examples but common troubleshooting could be difficult since there are so many variables into what can cause a request to fail.  If you check the console in Postman are you able to see any errors?


spencer_engel
Forum|alt.badge.img+4
  • Author
  • Expert ⭐️
  • 669 replies
  • September 22, 2023

No, it’s just a common 500 Internal Server Error.


peter_robson
Forum|alt.badge.img+3
  • Gainsight Employee ⭐️
  • 17 replies
  • September 26, 2023

@spencer_engel The 500 Internal Server Error messages are easy ... they indicate you have done something wrong ;) I must admit, Gainsight APIs have a rather steep learning curve, which is why I ran an API course at Pulse in 2022. I believe that our Gainsight Education team turned that into a course, but it looks like you have already reached out to our education team (Vivek)!

If you’d like, you are welcome to post some of your examples and this community can help troubleshoot them with you.

Note: I hardly ever run a collection unless I am performing a bulk update … I run individual requests for testing. Also, it’s not often I run across something that works one day and doesn’t work another (this usually indicates the issue is data-related). 


peter_robson
Forum|alt.badge.img+3
  • Gainsight Employee ⭐️
  • 17 replies
  • September 26, 2023
FYI - Here's a Timeline UPDATE (using POSTMAN parameters) …

PUT https://{{DOMAIN_NAME}}.gainsightcloud.com/v1/ant/es/activity?identifier=Gsid

{
  "records": [
    {
        "ContextName": "Company",
        "TypeName": "Meeting",
        "Gsid": "{{TIMELINE_EXTERNALID}}",
        "Subject": "External API demo 1",
        "ActivityDate": "2022-06-15T00:00:00.000+08:00",
        "Notes": "Timeline entry created via API",
        "author": "probson@gainsight.com",
        "companyName": "{{COMPANY_NAME}}",
        "internalAttendees": [
            "training@gainsight.com"
        ],
        "externalAttendees": [
            "[Your Name from the Person record you created earlier]"
        ]
}
],
  "lookups": {
    "GsCompanyId": {
      "fields": {
        "companyName": "Name"
      },
      "lookupField": "Gsid",
      "objectName": "Company",
      "multiMatchOption": "FIRSTMATCH",
      "onNoMatch": "ERROR"
    },
    "AuthorId": {
      "fields": {
        "author": "Email"
      },
      "lookupField": "Gsid",
      "objectName": "GsUser",
      "multiMatchOption": "FIRSTMATCH",
      "onNoMatch": "ERROR"
    },
    "InternalAttendees": {
        "fields": {
            "internalAttendees": "Email"
        },
        "lookupField": "Gsid",
        "objectName": "GsUser",
         "multiMatchOption": "FIRSTMATCH"
    },
    "ExternalAttendees": {
        "fields": {
            "externalAttendees": "Person_ID__gr.Name",
            "GsCompanyId": "Company_ID"
        },
        "lookupField": "Gsid",
        "objectName": "Company_Person",
        "multiMatchOption": "FIRSTMATCH"
    }    
  }
}

 


spencer_engel
Forum|alt.badge.img+4
  • Author
  • Expert ⭐️
  • 669 replies
  • September 26, 2023
peter_robson wrote:

@spencer_engel The 500 Internal Server Error messages are easy ... they indicate you have done something wrong ;) I must admit, Gainsight APIs have a rather steep learning curve, which is why I ran an API course at Pulse in 2022. I believe that our Gainsight Education team turned that into a course, but it looks like you have already reached out to our education team (Vivek)!

If you’d like, you are welcome to post some of your examples and this community can help troubleshoot them with you.

Note: I hardly ever run a collection unless I am performing a bulk update … I run individual requests for testing. Also, it’s not often I run across something that works one day and doesn’t work another (this usually indicates the issue is data-related). 

Thanks, Peter. And yes, I’ll definitely be taking the next course you run to get more in-depth training. It turns out my issues were actually Postman related - i.e. I hit an API limit. Since I posted this, I got quite a bit of help from GS Support and am in better shape than I was just a few days ago. Thanks again!


Forum|alt.badge.img+2
  • Expert ⭐️
  • 227 replies
  • September 26, 2023

I agree with Peter. I only use postman, or more often talend as I think it is more user friendly, to test my API calls. Once I have it to a point it is working I then transfer to GS and run my APIs from event framworks. I never bulk/mass run API calls, unless I am need to export things like dashbaord permissions, then postman is handy.

 

One thing to note is something GS error handling in event framework when running a test call is better than using postman/talend. Why is this? I imagine GS has some things built out to interrupt their own error codes.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings