- Acl
- Custom PG
- CSV Import
- Menu
- Notification
- Tax
- Themes
- Customer
- Wallet
- Loyality Points
- City
- Promo
- Order
- Search
- Marketplace
- Task
- Merchant
- Catalogue
- Business Categories
- Send SMS
- Admin
- Billing
- Project
- Discount
- Store Reviews
- checkout template
- Payment
Edit Store Status
POST
/open/marketplace/editStoreStatus
Parameter | Type | Description |
---|---|---|
api_key | string | Your API-key |
user_id | number | enter user id. |
user_type | number | For admin enter 2, For merchant enter 3 |
marketplace_user_id | number | enter market place user Id |
is_active | number(optional) | 1 For YES, 0 for NO |
is_blocked | number(optional) | 1 For YES, 0 for NO |
is_deleted | number(optional) | 1 For YES, 0 for NO |
is_closed | number(optional) | 1 For YES, 0 for NO |
Request
Body Params application/json
object {0}
Example
{
"api_key" :{{apikey}},
"marketplace_user_id": 510001,
"user_id" : 510001,
"user_type" : 2,
"is_active" : 1,
"is_blocked" : 0,
"is_deleted" : 0,
"is_closed" : 0
}
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 POST 'https://api.yelo.red/open/marketplace/editStoreStatus' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_key" :{{apikey}},
"marketplace_user_id": 510001,
"user_id" : 510001,
"user_type" : 2,
"is_active" : 1,
"is_blocked" : 0,
"is_deleted" : 0,
"is_closed" : 0
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-04-17 07:11:33