Operations related to accounts.
- Create and attach a service / product plan
Semify Enterprise REST APIs (2.0.0)
This is the documentation for the Semify Endpoints based on the OpenAPI 3.0 specification. You can find out more about Swagger at http://swagger.io.
https://developers.semify.com/_mock/openapi/
https://uat.services.semify.com/
https://services.semify.com/
- Mock server
https://developers.semify.com/_mock/openapi/api/v1/products/plans/campaigns
- Sandbox
https://uat.services.semify.com/api/v1/products/plans/campaigns
- Production Server
https://services.semify.com/api/v1/products/plans/campaigns
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developers.semify.com/_mock/openapi/api/v1/products/plans/campaigns \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"account_id": 12345,
"campaign_id": 54321,
"service_plan_id": 2100
}'{ "data": { "account_id": 12345, "campaign_id": 54321, "service_plan_id": 2100 }, "error": false, "pagination": { "totalPages": 1, "maxRows": 0, "offset": 0, "page": 1, "totalRecords": 1 }, "messages": [ "Successful plan attachment" ] }
- Mock server
https://developers.semify.com/_mock/openapi/api/v1/products/plans/campaigns/{campaign_id}/accounts/{account_id}
- Sandbox
https://uat.services.semify.com/api/v1/products/plans/campaigns/{campaign_id}/accounts/{account_id}
- Production Server
https://services.semify.com/api/v1/products/plans/campaigns/{campaign_id}/accounts/{account_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.semify.com/_mock/openapi/api/v1/products/plans/campaigns/26939/accounts/1 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "data": [ { … }, { … } ], "messages": [ "Service plan retreival success" ], "pagination": { "maxRows": 0, "totalPages": 1, "offset": 0, "page": 1, "totalRecords": 3 }, "error": false }