ex
consequatur
curl -L \ --request DELETE \ --url 'https://api.sellauth.com/v1/shops/{shopId}/custom-fields/{customFieldId}'
{ "message": "Custom field deleted successfully" }
non
curl -L \ --url 'https://api.sellauth.com/v1/shops/{shopId}/custom-fields'
[ { "id": 1, "shop_id": 1, "name": "Your Name", "hint": null, "type": "text", "options": null, "is_required": true, "created_at": "2024-01-01T00:00:00.000000Z", "updated_at": "2024-01-01T00:00:00.000000Z" } ]
tempora
placeat
esse
quisquam
false
curl -L \ --request POST \ --url 'https://api.sellauth.com/v1/shops/{shopId}/custom-fields' \ --header 'Content-Type: application/json' \ --data '{ "name": "tempora", "hint": "placeat", "type": "esse", "options": "quisquam", "is_required": false }'
{ "id": 1, "shop_id": 1, "name": "Your Name", "hint": null, "type": "text", "options": null, "is_required": true, "created_at": "2024-01-01T00:00:00.000000Z", "updated_at": "2024-01-01T00:00:00.000000Z" }
est
sequi
nihil
true
curl -L \ --request PUT \ --url 'https://api.sellauth.com/v1/shops/{shopId}/custom-fields/{customFieldId}' \ --header 'Content-Type: application/json' \ --data '{ "name": "est", "hint": "sequi", "type": "consequatur", "options": "nihil", "is_required": true }'