Oprish Rate Limits
Rate limits that apply to Oprish (The REST API).
| Field | Type | Description |
|---|---|---|
| get_instance_info | RateLimitConf | Rate limits for the get_instance_info endpoint. |
| create_message | RateLimitConf | Rate limits for the create_message endpoint. |
| create_user | RateLimitConf | Rate limits for the create_user endpoint. |
| verify_user | RateLimitConf | Rate limits for the verify_user endpoint. |
| get_user | RateLimitConf | Rate limits for the get_self, get_user and get_user_from_username endpoints. |
| guest_get_user | RateLimitConf | Rate limits for the get_self, get_user and get_user_from_username endpoints for someone who hasn’t made an account. |
| edit_user | RateLimitConf | Rate limits for the edit_user enpoint. |
| edit_profile | RateLimitConf | Rate limits for the edit_profile enpoint. |
| delete_user | RateLimitConf | Rate limits for the delete_user enpoint. |
| create_password_reset_code | RateLimitConf | Rate limits for the create_password_reset_code enpoint. |
| reset_password | RateLimitConf | Rate limits for the reset_password enpoint. |
| create_session | RateLimitConf | Rate limits for the create_session endpoint. |
| get_sessions | RateLimitConf | Rate limits for the get_sessions endpoint. |
| delete_session | RateLimitConf | Rate limits for the delete_session endpoint. |
| resend_verification | RateLimitConf | Rate limits for the resend_verification endpoint. |
| create_sphere | RateLimitConf | Rate limits for the create_sphere endpoint. |
| get_sphere | RateLimitConf | Rate limits for the get_sphere and get_sphere_from_slug endpoints. |
| guest_get_sphere | RateLimitConf | Rate limits for the get_sphere and get_sphere_from_slug endpoints for someone who hasn’t made an account. |
| create_category | RateLimitConf | Rate limits for the create_category endpoint. |
| edit_category | RateLimitConf | Rate limits for the edit_category endpoint. |
| delete_category | RateLimitConf | Rate limits for the delete_category endpoint. |
| create_channel | RateLimitConf | Rate limits for the create_channel endpoint. |
| edit_channel | RateLimitConf | Rate limits for the edit_channel endpoint. |
| delete_channel | RateLimitConf | Rate limits for the delete_channel endpoint. |
| join_sphere | RateLimitConf | Rate limits for the join_sphere and join_sphere_from_slug endpoints. |
| get_channel | RateLimitConf | Rate limits for the get_channel endpoint. |
| guest_get_channel | RateLimitConf | Rate limits for the get_channel endpoint for someone who hasn’t made an account. |
| get_messages | RateLimitConf | Rate limits for the get_messages endpoint. |
| get_message | RateLimitConf | Rate limits for the get_message endpoint. |
| get_member | RateLimitConf | Rate limits for the get_member endpoint. |
| guest_get_member | RateLimitConf | Rate limits for the get_member endpoint for someone who hasn’t made an account. |
| edit_member | RateLimitConf | Rate limits for the edit_member endpoint. |
| edit_message | RateLimitConf | Rate limits for the edit_message endpoint. |
| delete_message | RateLimitConf | Rate limits for the delete_message endpoint. |
| leave_sphere | RateLimitConf | Rate limits for the leave_sphere endpoint. |
Example
{
"get_instance_info": {
"reset_after": 5,
"limit": 2
},
"create_message": {
"reset_after": 5,
"limit": 10
},
...
}