Send Photo

This endpoint allows you to send an image popup to a user's CAD from in-game for mugshots, evidence photos, etc.

This API endpoint requires the pro version of Sonoran CAD or higher. For more information, see our pricing page.

Send Photo

POST https://api.sonorancad.com/general/send_photo

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

SEND_PHOTO

data

array

Array of request objects

Photo sent!
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "SEND_PHOTO",
    "data": [
        {
          "apiId": "STEAM:1234", // User API ID
          "url": "https://example.com/photo.png" // Photo URL
    ]

Last updated