Anahtar bilgisi
Vigo API Dokümantasyonu
Bu dökümantasyon, Vigo API sürümüne ait endpointleri ve entegrasyon detaylarını içermektedir. API, sipariş yönetimi ve sistemler arası veri entegrasyonu gibi işlevler için kullanılabilir.
İletişim
Başvuru ve sorularınız için integration@vigo.ist adresine mail iletebilirsiniz.
Overview
Vigo Integration Support
Languages
Servers
Mock server
https://developers.vigo.ist/_mock/docs/
Development server
https://app-dev.vigo.ist/api/v2/
Production server
https://app.vigo.ist/api/v2/
Kimlik Doğrulama
Kimlik ve Yetkilendirme ile ilgili işlemleri içermektedir.
API'yi kullanabilmek için bir erişim token'ı alınmalıdır. Hesabınız oluşturulduğunda size özel clientId ve clientSecret bilgileri e-posta yoluyla iletilir. Bu bilgiler kullanılarak token alınması gerekmektedir.
Token alındıktan sonra, tüm yetkili isteklerde header bilgisi içinde
x-auth-token key'i ile iletilmelidir.Operations
- Mock server
https://developers.vigo.ist/_mock/docs/auth/token
- Development server
https://app-dev.vigo.ist/api/v2/auth/token
- Production server
https://app.vigo.ist/api/v2/auth/token
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developers.vigo.ist/_mock/docs/auth/token \
-H 'Content-Type: application/json' \
-d '{
"clientId": "string",
"clientSecret": "string"
}'Response
application/json
{ "token": "string", "expiresAt": 0 }