service_provider ```json { "id":1, "name":"ucloud", "description":"xxx", "created_at":"2021-08-03 12:09:56", "updated_at":"2021-08-03 12:09:56" } ``` GET /v1/service_providers?limit=&offset= GET /v1/service_providers/1 POST /v1/service_providers ```json { "id": "", "name":"ucloud", "description":"xxx" } ``` PATCH /v1/service_providers/1 ```json { "name":"UCloud" } ``` Envelope ```json { "meta": { "code": 200, "error": "" }, "data": { "service_provides": [ { "id":1, "name":"ucloud", "description":"xxx", "created_at":"2021-08-03 12:09:56", "updated_at":"2021-08-03 12:09:56" }, { "id":2, "name":"vnet", "description":"xxx", "created_at":"2021-08-03 12:09:56", "updated_at":"2021-08-03 12:09:56" } ] }, "pagination": { "limit": "" } } ```