Comprehensive list of Amadeus Altéa Error Codes and are error codes available in languages other than English? - amadeus

Where can I get a comprehensive list of Amadeus Altéa Error Codes and are error codes available in languages other than English ? I have access to the portal.

Related

Is there documentation for the voip.ms API that shows parameters for functions

The link to Documentation and Examples on the voip.ms website shows a list of functions with no details of parameters and there are no examples.
Tech support at voip.ms said that's all there is I can't understand how how someone can build an application using the API without these details
The list of function parameters can be found in the SOAP WSDL at https://voip.ms/api/v1/server.wsdl or in their example code at https://voip.ms/api/v1/API.zip

How to fix Amadeus API 500 Internal Error?

The "Flight Offers Search V2" and "Flight Offers Price V1" endpoints are returning errors. Probably it's a configuration issue
Flight Offers Search API comes with 2 different endpoints:
GET with a limited number of parameters but easier to implement for the most common use cases
POST version much more complete offering all types of filtering but it requires to build the JSON body. In that context we use a POST to offer the possibility to build the JSON body without length restriction, even if it is for a search. That's why in the swagger documentation you will find X-HTTP-Method-Override set at GET.
The Flight Offers Price API is built from the response of Flight Offers Search. To allow developers to reuse the body of the previous response we created this endpoint using the verb POST, That's why in the swagger documentation you will find X-HTTP-Method-Override set at GET.

Google Translate API and word correction

translate.google.com corrects word and shows some additional info about it
But Google Translate API returns only translation:
Also, it doesn't translating incorrect words.
Q. Can I somehow translate incorrect words with API?
No, there's no mechanism to do this built into the Google Translate API as of right now.
You'd need to do this correction on your end prior to requesting a translation.

city not found Yahoo weather api

I am using yahoo weather api to pull weather data for a certain location. I am getting error that says "city not found".
The location is "Islamabad, Pakistan" with WOEID=2211027
Here is the xml request uri, i am using:
http://weather.yahooapis.com/forecastrss?w=2211027&u=c&d=7.xml
It was working few days back. But now it shows error saying city not found, Any ideas?
Thanks Awais
Do you have the coordinates?
If yes, you can try metwit weather API.
Here is a working and simple jQuery example : http://jsbin.com/isukam/1
Disclosure: I own this sweet API. Let know if you need help.

Would be great to get a detailed error description table for Flattr API

In general it would be great to get some sort of description of all possible errors returned by the API for any particular request. This would make implementations much more reliable and would improved the application feedback for the user.
Imagine that we need to display localized error messages to the user and not only "Request failed with error code xxx".
A good example is this error {"error":"flattr_once","error_description":"You are not allowed to flattr this thing more than once this period","error_uri":"http:\/\/developers.flattr.net\/api"}. There is no mention of it in the documentation, but an application needs to make sense of that and maybe refrain from giving the user the option to flattr this item in the future.
This is some responses I found when flattering around:
403 {"error":"flattr_once","error_description":"You are not allowed to flattr this thing more than once this period","error_uri":"http:\/\/developers.flattr.net\/api"}
401 {"error":"no_means","error_description":"You don't have any money to flattr with","error_uri":"http:\/\/developers.flattr.net\/api"}
{"error":"flattr_owner","error_description":"You are not allowed to flattr your own thing","error_uri":"http:\/\/developers.flattr.net\/api"}
There are several error descriptions in the developer documentation. For example error responses when a flattring failed and the standard errors that are universal to many of the resources.