Membros
  1. Projects
Membros
  • Membros API V2
    • API Keys
      • API info
      • Available scopes
      • Merchant by public key
      • List API keys
      • Create API key
      • Update API key
      • Delete API key
    • Customers
      • List customers
      • Create customer
      • Get customer
      • Update customer
    • Plans
      • List plans
      • Create plan
      • Get plan
      • Update plan
      • Delete plan
    • Subscriptions
      • List subscriptions
    • Orders
      • List orders
      • Create order
      • Create PIX order
      • Get order
    • Analytics
      • Analytics placeholder
    • Projects
      • List projects
        GET
      • Create project
        POST
      • Get project
        GET
      • Update project
        PUT
      • Delete project
        DELETE
      • Update status
        PATCH
      • Project stats
        GET
      • Activate project
        POST
      • Suspend project
        POST
      • Archive project
        POST
    • Products
      • List products
      • Create product
      • Get product
      • Update product
      • Delete product
    • Webhooks
      • List webhooks
      • Create webhook
      • Webhook events
      • List logs
      • Get log
      • Get webhook
      • Update webhook
      • Delete webhook
      • Regenerate signing key
      • Send test
      • Logs for webhook
      • Retry webhook
    • Esquemas
      • Pagination
      • BasicMessage
      • PendingFeature
      • ApiInfo
      • Customer
      • CustomerCreateRequest
      • CustomerEnvelope
      • CustomerListResponse
      • Plan
      • PlanRequest
      • PlanEnvelope
      • PlanListResponse
      • OrderCustomer
      • OrderItem
      • Order
      • OrderCreateRequest
      • Product
      • ProductCreateRequest
      • ProductUpdateRequest
      • ProductEnvelope
      • ProductListResponse
      • ProjectStatus
      • ProjectVisibility
      • ProjectType
      • Project
      • ProjectCreateRequest
      • ProjectUpdateRequest
      • ProjectEnvelope
      • ProjectListResponse
      • ProjectStats
      • WebhookEvent
      • Webhook
      • WebhookCreateRequest
      • WebhookUpdateRequest
      • WebhookEventCatalog
      • WebhookLog
      • WebhookListResponse
      • WebhookLogListResponse
      • WebhookLogSlice
      • ScopeCatalog
      • ApiKey
      • ApiKeyCreateRequest
      • ApiKeyUpdateRequest
      • ApiKeyCreateResponse
      • ApiKeyEnvelope
      • ApiKeyListResponse
      • MerchantLookupResponse
  1. Projects

Create project

POST
/v2/projects

Requisição

Authorization
Bearer Token
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
or
Parâmetros Bodyapplication/jsonObrigatório

Examples

Respostas

🟢201Created
application/json
Project
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v2/projects' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "description": "string",
    "long_description": "string",
    "logo_url": "http://example.com",
    "cover_image": "http://example.com",
    "website_url": "http://example.com",
    "type": "membership",
    "visibility": "public",
    "business_settings": {
        "property1": "string",
        "property2": "string"
    },
    "marketing_settings": {
        "property1": "string",
        "property2": "string"
    },
    "content_settings": {
        "property1": "string",
        "property2": "string"
    },
    "launch_date": "2019-08-24T14:15:22.123Z",
    "end_date": "2019-08-24T14:15:22.123Z",
    "is_featured": true,
    "metadata": {
        "property1": "string",
        "property2": "string"
    }
}'
Response Response Example
{
    "error": true,
    "data": {
        "project": {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "name": "string",
            "description": "string",
            "status": "active",
            "type": "membership",
            "visibility": "public",
            "plans_count": 0,
            "orders_count": 0,
            "total_revenue": 0,
            "total_subscribers": 0,
            "active_subscribers": 0,
            "creatorId": "688ebf54-d343-4104-8711-82c2feac534a",
            "metadata": {
                "property1": "string",
                "property2": "string"
            },
            "createdAt": "2019-08-24T14:15:22.123Z"
        }
    },
    "message": "string"
}
Modificado em 2025-11-15 15:11:05
Página anterior
List projects
Próxima página
Get project
Built with