Introduction

Getting Started

You can learn required information to use the Fibabanka API’s from Fibabanka API Portal.

You can contact to us from Contact Us page to use the system. After completion the necessary authentication process, you can start consuming web services from API Gateway.

Authorization Guide

OAuth2(tools.ietf.org/html/rfc6749#section-4.4) standarts and Client Credential an example of the grant type are used in our web services. You can use the client_id and client_secret information, have been sent you, to get a bearer token for a specific interval.

Sample Intro Image

Sample Curl:

curl -X POST https://sandbox-auth.fibabanka.com.tr/v1/oauth/token?grant_type=client_credentials --header "Authorization: Basic eW91ci1jbGllbnQtaWQ6eW91ci1jbGllbnQtc2VjcmV0"

Sample Service Call

Access_token is required token type to call the service. You should add this token to the header part as shown below to call the web service.

key: Authorization, value: Bearer {acces_token}

Sample Intro Image

Sample Curl:

curl –X POST https://sandbox-apigw.fibabanka.com.tr/v1/... --header “Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.....” --header “Content-Type: application/json” -d { ... } }

Services

Check out the Services to see how easy it is to use Banking as a Service.