chore: disable saving cookies for api requests
This commit is contained in:
@@ -1,74 +1,89 @@
|
|||||||
### user profile minimum
|
### user profile minimum
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/userinfo
|
GET {{base_url}}/api/userinfo
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_email")}}
|
Authorization: Bearer {{$auth.token("oauth2_email")}}
|
||||||
|
|
||||||
### user profile full
|
### user profile full
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/userinfo
|
GET {{base_url}}/api/userinfo
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_profile")}}
|
Authorization: Bearer {{$auth.token("oauth2_profile")}}
|
||||||
|
|
||||||
### user crm attributes
|
### user crm attributes
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/crm-attributes
|
GET {{base_url}}/api/crm-attributes
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_profile")}}
|
Authorization: Bearer {{$auth.token("oauth2_profile")}}
|
||||||
|
|
||||||
### API last update at
|
### API last update at
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/last-update
|
GET {{base_url}}/api/last-update
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API countries
|
### API countries
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/countries
|
GET {{base_url}}/api/countries
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API hotels
|
### API hotels
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/hotels
|
GET {{base_url}}/api/hotels
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API hotel
|
### API hotel
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/hotels/198924
|
GET {{base_url}}/api/hotels/198924
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API pickups
|
### API pickups
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/pickups
|
GET {{base_url}}/api/pickups
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API pickup
|
### API pickup
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/pickups/1
|
GET {{base_url}}/api/pickups/1
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API travels
|
### API travels
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/travels
|
GET {{base_url}}/api/travels
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API travel
|
### API travel
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/travels/SBW131225
|
GET {{base_url}}/api/travels/SBW131225
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API travel remote
|
### API travel remote
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/travels/11603
|
GET {{base_url}}/api/travels/11603
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API hotel availability remote
|
### API hotel availability remote
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/travels/11603/152546/2026-01-03/availability
|
GET {{base_url}}/api/travels/11603/152546/2026-01-03/availability
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API products remote
|
### API products remote
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/products
|
GET {{base_url}}/api/products
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
Authorization: Bearer {{$auth.token("oauth2_api")}}
|
||||||
|
|
||||||
### API contact form
|
### API contact form
|
||||||
|
# @no-cookie-jar
|
||||||
POST {{base_url}}/api/contactform
|
POST {{base_url}}/api/contactform
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
@@ -86,6 +101,7 @@ Authorization: Bearer {{$auth.token("oauth2_api")}}
|
|||||||
}
|
}
|
||||||
|
|
||||||
### API pickups planning webhook
|
### API pickups planning webhook
|
||||||
|
# @no-cookie-jar
|
||||||
POST {{base_url}}/api/pickups-planning
|
POST {{base_url}}/api/pickups-planning
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
@@ -94,6 +110,7 @@ Authorization: Bearer {{$auth.token("oauth2_api")}}
|
|||||||
< ./assets/json/zustiegplanung.json
|
< ./assets/json/zustiegplanung.json
|
||||||
|
|
||||||
### API pickups planning
|
### API pickups planning
|
||||||
|
# @no-cookie-jar
|
||||||
GET {{base_url}}/api/pickups-planning/DPWWTS191125
|
GET {{base_url}}/api/pickups-planning/DPWWTS191125
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
|||||||
Reference in New Issue
Block a user