GET /v2/odata/InterfaceStatusTypes
Return
This endpoint provides a list of status types that are used to categorize and describe the status of system interfaces. This endpoint includes information about various status types such as "Success," "Delay," "Verify," and others. It is valuable for understanding the different states that interfaces can be in, aiding in monitoring and management of system connectivity and data exchange.
Endpoint URL
https://api.wealthtechs.com/v2/odata/InterfaceStatusTypes
Authorization
// Authorization via JWT Token.
Authorization: Bearer <YourToken>
Learn how to get access to our API V2.0 by clicking here.
You can copy and use our API v2.0 Example Token to get familiar with our API OData Resources.
Responses
Code | Type |
---|---|
200 | Success |
204 | No Content |
400 | Bad Request |
401 | Unauthorized |
Example Code
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVc2VySW5mbyI6IntcIklkXCI6OTgxLFwiSWRlbnRpdHlJZFwiOlwiNjMyMzhhZTQtMzAyMC00NWI5LWEwODktOTE2ZTY4MDMyZTY3XCIsXCJVc2VyTmFtZVwiOlwiMF9URVNUX0NMSUVOVFwiLFwiRW1haWxcIjpcInRlc3RjbGllbnRAd2VhbHRodGVjaHMuY29tXCIsXCJGaXJzdE5hbWVcIjpcIlRlc3RcIixcIkxhc3ROYW1lXCI6XCJDbGllbnRcIixcIklzQ2xpZW50VXNlclwiOmZhbHNlfSIsIm5iZiI6MTY5NDcwMjU3OSwiZXhwIjoxOTI0OTIzNjAwLCJpc3MiOiJXZWFsdGhUZWNocyIsImF1ZCI6IkFQSVVzZXJzIn0.bNcP0ouNwtFoxrI7pYXw0WKiw0TN6w_R2-Ban5moo1A");
var requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch("https://api.wealthtechs.com/v2/odata/InterfaceStatusTypes?$top=5", requestOptions)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));
Example Response
{
"@odata.context": "https://api.wealthtechs.com/v2/odata/$metadata#InterfaceStatusTypes",
"value": [
{
"Id": 1,
"Name": "Failed",
"Description": "An internal error occurred. WealthTechs need to fix the error and rerun the process of importing the files."
},
{
"Id": 2,
"Name": "Delay",
"Description": "The files have not been received at the estimated time of arrival. WealthTechs contacts the custodian regarding the files delayed and ask them an ETA. Once Wealthtechs receive the files, Wealthtechs reprocess them and notify the Client as soon as the files are ready to download."
},
{
"Id": 3,
"Name": "Verify",
"Description": "The interface has been executed and the data was generated but needs WealthTechs validation process. Files need to be further reviewed first and reprocess "
},
{
"Id": 4,
"Name": "Waiting",
"Description": "The interfaces are waiting until their ETA time arrives, which is the time that our process will just start looking for the files to process them."
},
{
"Id": 5,
"Name": "Success",
"Description": "The interface is successfully executed, and the files are ready for download."
}
]
}