Operations related to accounts.
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/campaigns
- Sandbox
https://uat.services.semify.com/api/v1/campaigns
- Production Server
https://services.semify.com/api/v1/campaigns
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.semify.com/_mock/openapi/api/v1/campaigns \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Campaigns successfully retrieved.
{ "data": [ { … } ], "error": false, "pagination": { "totalPages": 1, "maxRows": 0, "offset": 0, "page": 1, "totalRecords": 1 }, "messages": [ "Campaigns successfully retrieved." ] }
- Mock server
https://developers.semify.com/_mock/openapi/api/v2/campaigns/notes
- Sandbox
https://uat.services.semify.com/api/v2/campaigns/notes
- Production Server
https://services.semify.com/api/v2/campaigns/notes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developers.semify.com/_mock/openapi/api/v2/campaigns/notes?campaign_id=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "error": false, "messages": [ "Campaign notes retrieved successfully" ], "pagination": {}, "data": { "campaign_id": 12345, "writer_instructions": "Focus on local SEO and content marketing", "additional_instructions": "Include industry-specific keywords and maintain a professional tone", "created_at": "2024-03-15T10:30:00Z", "updated_at": "2024-03-15T10:30:00Z" } }
- Mock server
https://developers.semify.com/_mock/openapi/api/v2/campaigns/notes
- Sandbox
https://uat.services.semify.com/api/v2/campaigns/notes
- Production Server
https://services.semify.com/api/v2/campaigns/notes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://developers.semify.com/_mock/openapi/api/v2/campaigns/notes \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"campaign_id": 12345,
"writer_instructions": "Focus on local SEO and content marketing",
"additional_instructions": "Include industry-specific keywords and maintain a professional tone"
}'{ "error": false, "messages": [ "Campaign notes updated successfully" ], "pagination": {}, "data": { "campaign_id": 12345, "writer_instructions": "Focus on local SEO and content marketing", "additional_instructions": "Include industry-specific keywords and maintain a professional tone", "created_at": "2024-03-15T10:30:00Z", "updated_at": "2024-03-15T10:30:00Z" } }