- Getting Started
- Manage Videos
- Manage Collection
- Multipart Upload
- Manage Tags
- Manage Livestream
- Notifications
- Manage Security Settings
Add Access control
PUT
https://apistream.gotipath.com/v1/libraries/34f4dcc3-a5f0-48dd-8c62-b467929d2ec6/access-controls
Last modified:2023-03-23 15:47:37
Maintainer:Not configured
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379
Header Params
X-Auth-ClientId
string
required
Default:
ebe8bac0-eaef-4548-8b59-96c9ec38a22b
X-Auth-LibraryId
string
required
Default:
89898172-d32b-49f8-a94a-bdf0c6ca1bd9
X-Auth-ApiKey
string
required
Default:
pEBPYVUNMbP7uDsb0W2h3oTjpEqr32fFh/3TNUhvFcJt7/J/hyV+5LctVWONgzaw+w+PpQ
Body Params application/json
video_access_rules
object
required
geo_country
object
required
geo_ip
object
required
domain_referrer
object
required
token
object
required
livestream_access_rules
object
required
geo_country
object
required
geo_ip
object
required
domain_referrer
object
required
token
object
required
Example
{
"video_access_rules": {
"geo_country": {
"action": "allow",
"enabled": false,
"countries": [
"BD",
"IN"
]
},
"geo_ip": {
"action": "allow",
"enabled": true,
"ips": [
"127.0.0.1"
]
},
"domain_referrer": {
"action": "allow",
"enabled": true,
"domains": [
"sohel.pro"
]
},
"token": {
"enabled": true,
"secret": "ceasfslfslfslfjslfjslfjlsfjlsfjslfjslfjslflsfjsa"
}
},
"livestream_access_rules": {
"geo_country": {
"action": "allow",
"enabled": true,
"countries": [
"BD",
"IN"
]
},
"geo_ip": {
"action": "allow",
"enabled": true,
"ips": [
"127.0.0.1"
]
},
"domain_referrer": {
"action": "allow",
"enabled": true,
"domains": [
"sohel.pro"
]
},
"token": {
"enabled": true,
"secret": "ceasfslfslfslfjslfjslfjlsfjlsfjslfjslfjslflsfjsa"
}
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://apistream.gotipath.com/v1/libraries/34f4dcc3-a5f0-48dd-8c62-b467929d2ec6/access-controls' \
--header 'X-Auth-ClientId;' \
--header 'X-Auth-LibraryId;' \
--header 'X-Auth-ApiKey;' \
--header 'Content-Type: application/json' \
--data-raw '{
"video_access_rules": {
"geo_country": {
"action": "allow",
"enabled": false,
"countries": [
"BD",
"IN"
]
},
"geo_ip": {
"action": "allow",
"enabled": true,
"ips": [
"127.0.0.1"
]
},
"domain_referrer": {
"action": "allow",
"enabled": true,
"domains": [
"sohel.pro"
]
},
"token": {
"enabled": true,
"secret": "ceasfslfslfslfjslfjslfjlsfjlsfjslfjslfjslflsfjsa"
}
},
"livestream_access_rules": {
"geo_country": {
"action": "allow",
"enabled": true,
"countries": [
"BD",
"IN"
]
},
"geo_ip": {
"action": "allow",
"enabled": true,
"ips": [
"127.0.0.1"
]
},
"domain_referrer": {
"action": "allow",
"enabled": true,
"domains": [
"sohel.pro"
]
},
"token": {
"enabled": true,
"secret": "ceasfslfslfslfjslfjslfjlsfjlsfjslfjslfjslflsfjsa"
}
}
}'
Responses
🟢200OK
application/json
Body
object {0}
Example
{}
Modified at 2023-03-23 15:47:37