For the complete documentation index, see llms.txt. This page is also available as Markdown.

Asks

Create Ask

post

Schedule review request outreach through configured email or SMS channels.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

Object containing response data for this resource.

emailstringOptional

Email address for the person or customer.

phonestringOptional

Phone number for the person or customer.

reminders_countintegerOptional

Number of reminder messages to send after the initial request.

asked_atone of · nullableOptional

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.

integerOptional

Unix timestamp in seconds since the Unix epoch.

or
string · max: 50Optional

Date/time string parseable by Carbon; prefer ISO-8601 / RFC 3339; maximum 50 characters.

Responses
200

Success

application/json

Object containing response data for this resource.

successbooleanOptional

Indicates whether the request completed successfully.

codeintegerOptional

Short code or application-level status code for this resource.

post/asks
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"
}
200

Success

{
  "success": true,
  "code": 200,
  "data": {
    "email": "alex.johnson@example.com",
    "phone": "+15551234567",
    "scheduled_at": "2026-04-28T15:30:00+00:00"
  }
}

Last updated