Asks
Object containing response data for this resource.
Email address for the person or customer.
Phone number for the person or customer.
Number of reminder messages to send after the initial request.
Optional instant for request bodies: Unix timestamp as integer (seconds), or a date/time string of at most 50 characters that PHP Carbon can parse. For strings, ISO-8601 / RFC 3339 (for example 2026-04-28T15:30:00Z) is the recommended format in examples and client integrations. Invalid values fail validation. When the field is omitted or null, the API uses the current server time where that behavior is documented on the operation.
Unix timestamp in seconds since the Unix epoch.
Date/time string parseable by Carbon; prefer ISO-8601 / RFC 3339; maximum 50 characters.
Success
Object containing response data for this resource.
Indicates whether the request completed successfully.
Short code or application-level status code for this resource.
POST /project/asks HTTP/1.1
Host: api.moregoodreviews.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 140
{
"channels": [
"email",
"sms"
],
"email": "alex.johnson@example.com",
"phone": "+15551234567",
"reminders_count": 2,
"asked_at": "2026-04-28T15:30:00Z"
}Success
{
"success": true,
"code": 200,
"data": {
"email": "alex.johnson@example.com",
"phone": "+15551234567",
"scheduled_at": "2026-04-28T15:30:00+00:00"
}
}Last updated