init abstract iban (#2921)
This commit is contained in:
Родитель
8f8b752c6d
Коммит
d2d6bd2a0b
|
@ -0,0 +1,84 @@
|
|||
{
|
||||
"swagger": "2.0",
|
||||
"info": {
|
||||
"title": "Abstract IBAN Validator",
|
||||
"contact": {
|
||||
"name": "Fördős András",
|
||||
"email": "fordosa90+ipc_abstriban@gmail.com"
|
||||
},
|
||||
"description": "Abstract's IBAN Validation for determining the validity and other details of the International Bank Account Number (IBAN).",
|
||||
"version": "1.0"
|
||||
},
|
||||
"host": "ibanvalidation.abstractapi.com",
|
||||
"basePath": "/",
|
||||
"schemes": [
|
||||
"https"
|
||||
],
|
||||
"consumes": [],
|
||||
"produces": [],
|
||||
"paths": {
|
||||
"/v1/": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"iban": {
|
||||
"type": "string",
|
||||
"description": "The IBAN submitted for validation.",
|
||||
"title": "IBAN"
|
||||
},
|
||||
"is_valid": {
|
||||
"type": "boolean",
|
||||
"description": "Is true if the IBAN submitted is valid and false if it is not.",
|
||||
"title": "Is valid"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"summary": "Validate",
|
||||
"operationId": "Validate",
|
||||
"description": "Determine the validity and other details of the International Bank Account Number (IBAN).",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "iban",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"type": "string",
|
||||
"x-ms-summary": "IBAN",
|
||||
"description": "The IBAN to validate. Note that the API will accept white spaces."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"definitions": {},
|
||||
"parameters": {},
|
||||
"responses": {},
|
||||
"securityDefinitions": {
|
||||
"api_key": {
|
||||
"type": "apiKey",
|
||||
"in": "query",
|
||||
"name": "api_key"
|
||||
}
|
||||
},
|
||||
"security": [],
|
||||
"tags": [],
|
||||
"x-ms-connector-metadata": [
|
||||
{
|
||||
"propertyName": "Website",
|
||||
"propertyValue": "https://docs.abstractapi.com/iban-validation"
|
||||
},
|
||||
{
|
||||
"propertyName": "Privacy policy",
|
||||
"propertyValue": "https://www.abstractapi.com/legal/dpa"
|
||||
},
|
||||
{
|
||||
"propertyName": "Categories",
|
||||
"propertyValue": "Data;Business Intelligence"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"properties": {
|
||||
"connectionParameters": {
|
||||
"api_key": {
|
||||
"type": "securestring",
|
||||
"uiDefinition": {
|
||||
"displayName": "API Key",
|
||||
"description": "The API Key for this api",
|
||||
"tooltip": "Provide your API Key",
|
||||
"constraints": {
|
||||
"tabIndex": 2,
|
||||
"clearText": false,
|
||||
"required": "true"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"iconBrandColor": "#da3b01",
|
||||
"capabilities": [],
|
||||
"publisher": "Fördős András",
|
||||
"stackOwner": "Abstract API Inc."
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
# Abstract's IBAN Validator
|
||||
Abstract's IBAN Validation API is a fast, lightweight, modern, and RESTful JSON API for determining the validity and other details of the International Bank Account Number (IBAN).
|
||||
|
||||
## Publisher: Fördős András
|
||||
|
||||
## Prerequisites
|
||||
An AbstractAPI account is required. You can sign up for a free plan or select from the paid memberships: [https://app.abstractapi.com/api/iban-validation/pricing/select](https://app.abstractapi.com/api/iban-validation/pricing/select)
|
||||
|
||||
## Obtaining Credentials
|
||||
This connector uses API-Key authentication. Once signed up, visit your profile home page to get your API-Key: [https://app.abstractapi.com/api/iban-validation/tester](https://app.abstractapi.com/api/iban-validation/tester)
|
||||
|
||||
## Supported Operations
|
||||
|
||||
### Validate IBAN number
|
||||
Determine the validity and other details of the International Bank Account Number (IBAN).
|
||||
|
||||
## Known Issues and Limitations
|
||||
|
||||
There are no known issues or limitations regarding the connector.
|
||||
Please reach out and connect me when you see the need for any additional extension and let us collaborate!
|
||||
|
||||
Important note, that the underlying service has various limitations applied (rates and data) based on your membership.
|
Загрузка…
Ссылка в новой задаче